/* * AtomsCalculationUnitTest.hpp * * Created on: Feb 19, 2010 * Author: crueger */ #ifndef ATOMSCALCULATIONUNITTEST_HPP_ #define ATOMSCALCULATIONUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include // we prefer enum over define enum { ATOM_COUNT = 10 }; #include "types.hpp" class atom; class AtomsCalculationTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( AtomsCalculationTest ); CPPUNIT_TEST ( testCalculateSimple ); CPPUNIT_TEST ( testCalculateExcluded ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void testCalculateSimple(); void testCalculateExcluded(); private: atom *atoms [ATOM_COUNT]; atomId_t atomIds [ATOM_COUNT]; }; #endif /* ATOMSCALCULATIONUNITTEST_HPP_ */