ForceAnnealing_goodresults
        ForceAnnealing_tocheck
      
      
      
| Line |   | 
|---|
| 1 | /*
 | 
|---|
| 2 |  * SaturationDistanceMaximizerUnitTest.hpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: Jul 28, 2014
 | 
|---|
| 5 |  *      Author: heber
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #ifndef SATURATIONDISTANCEMAXIMIZERUNITTEST_HPP_
 | 
|---|
| 9 | #define SATURATIONDISTANCEMAXIMIZERUNITTEST_HPP_
 | 
|---|
| 10 | 
 | 
|---|
| 11 | // include config.h
 | 
|---|
| 12 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 13 | #include <config.h>
 | 
|---|
| 14 | #endif
 | 
|---|
| 15 | 
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #include <cppunit/extensions/HelperMacros.h>
 | 
|---|
| 18 | 
 | 
|---|
| 19 | #include "Fragmentation/Exporters/SaturationDistanceMaximizer.hpp"
 | 
|---|
| 20 | 
 | 
|---|
| 21 | #include <vector>
 | 
|---|
| 22 | 
 | 
|---|
| 23 | class atom;
 | 
|---|
| 24 | 
 | 
|---|
| 25 | /********************************************** Test classes **************************************/
 | 
|---|
| 26 | 
 | 
|---|
| 27 | class SaturationDistanceMaximizerTest : public CppUnit::TestFixture
 | 
|---|
| 28 | {
 | 
|---|
| 29 |     CPPUNIT_TEST_SUITE( SaturationDistanceMaximizerTest) ;
 | 
|---|
| 30 |     CPPUNIT_TEST ( identityTest );
 | 
|---|
| 31 |     CPPUNIT_TEST_SUITE_END();
 | 
|---|
| 32 | 
 | 
|---|
| 33 | public:
 | 
|---|
| 34 |       void setUp();
 | 
|---|
| 35 |       void tearDown();
 | 
|---|
| 36 |       void identityTest();
 | 
|---|
| 37 | 
 | 
|---|
| 38 | private:
 | 
|---|
| 39 |       std::vector<atom *> atomVector;
 | 
|---|
| 40 |       static size_t MaxAtoms;
 | 
|---|
| 41 | };
 | 
|---|
| 42 | 
 | 
|---|
| 43 | #endif /* SATURATIONDISTANCEMAXIMIZERUNITTEST_HPP_ */
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.