source: molecuilder/src/unittests/atomsCalculationTest.hpp@ 495a53

Last change on this file since 495a53 was 5dba7a, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Made the periodentafel use STL-containers instead of custom llists

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