| Last change
 on this file since 1d77e1a was             a80f419, checked in by Frederik Heber <heber@…>, 15 years ago | 
        
          | 
First version.
 
Everything was extracted from project MoleCuilder and adapted such that itruns on its own (i.e. new configure.ac, Makefile.am structure, stuff for
 libtool versioning, ...)
 
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            466 bytes | 
      
      
| Rev | Line |  | 
|---|
| [a80f419] | 1 | /* | 
|---|
|  | 2 | * SingletonUnitTest.hpp | 
|---|
|  | 3 | * | 
|---|
|  | 4 | *  Created on: Mar 11, 2010 | 
|---|
|  | 5 | *      Author: crueger | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
|  | 8 | #ifndef SINGLETONUNITTEST_HPP_ | 
|---|
|  | 9 | #define SINGLETONUNITTEST_HPP_ | 
|---|
|  | 10 |  | 
|---|
|  | 11 | #include <cppunit/extensions/HelperMacros.h> | 
|---|
|  | 12 |  | 
|---|
|  | 13 | class SingletonTest : public CppUnit::TestFixture | 
|---|
|  | 14 | { | 
|---|
|  | 15 | CPPUNIT_TEST_SUITE( SingletonTest ); | 
|---|
|  | 16 | CPPUNIT_TEST ( ConstructionTest ); | 
|---|
|  | 17 | CPPUNIT_TEST_SUITE_END(); | 
|---|
|  | 18 |  | 
|---|
|  | 19 | public: | 
|---|
|  | 20 | void setUp(); | 
|---|
|  | 21 | void tearDown(); | 
|---|
|  | 22 |  | 
|---|
|  | 23 | void ConstructionTest(); | 
|---|
|  | 24 | }; | 
|---|
|  | 25 |  | 
|---|
|  | 26 | #endif /* SINGLETONUNITTEST_HPP_ */ | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.