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