source: molecuilder/src/unittests/manipulateAtomsTest.hpp@ 9ef76a

Last change on this file since 9ef76a was 9ef76a, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added a mechanism that allows the world to track changes done by the manipulators

  • Property mode set to 100644
File size: 702 bytes
Line 
1/*
2 * manipulateAtomsTest.hpp
3 *
4 * Created on: Feb 18, 2010
5 * Author: crueger
6 */
7
8#ifndef MANIPULATEATOMSTEST_HPP_
9#define MANIPULATEATOMSTEST_HPP_
10
11#include <cppunit/extensions/HelperMacros.h>
12
13#define ATOM_COUNT (10)
14
15class atom;
16
17class manipulateAtomsTest : public CppUnit::TestFixture
18{
19 CPPUNIT_TEST_SUITE( manipulateAtomsTest );
20 CPPUNIT_TEST ( testManipulateSimple );
21 CPPUNIT_TEST ( testManipulateExcluded );
22 CPPUNIT_TEST ( testObserver );
23 CPPUNIT_TEST_SUITE_END();
24
25public:
26 void setUp();
27 void tearDown();
28
29 void testManipulateSimple();
30 void testManipulateExcluded();
31 void testObserver();
32
33private:
34 atom *atoms [ATOM_COUNT];
35};
36
37#endif /* MANIPULATEATOMSTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.