source: molecuilder/src/unittests/MoleculeDescriptorTest.hpp@ e62daa

Last change on this file since e62daa 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: 798 bytes
Line 
1/*
2 * MoleculeDescriptorTest.hpp
3 *
4 * Created on: Mar 4, 2010
5 * Author: crueger
6 */
7
8#ifndef MOLECULEDESCRIPTORTEST_HPP_
9#define MOLECULEDESCRIPTORTEST_HPP_
10
11#include <cppunit/extensions/HelperMacros.h>
12
13#include "types.hpp"
14
15#define MOLECULE_COUNT (10)
16
17class molecule;
18
19class MoleculeDescriptorTest : public CppUnit::TestFixture
20{
21 CPPUNIT_TEST_SUITE( MoleculeDescriptorTest );
22 CPPUNIT_TEST ( MoleculeBaseSetsTest );
23 CPPUNIT_TEST ( MoleculeIdTest );
24 CPPUNIT_TEST ( MoleculeCalcTest );
25 CPPUNIT_TEST_SUITE_END();
26
27public:
28 void setUp();
29 void tearDown();
30
31 void MoleculeBaseSetsTest();
32 void MoleculeIdTest();
33 void MoleculeCalcTest();
34
35private:
36 molecule *molecules [MOLECULE_COUNT];
37 moleculeId_t moleculeIds [MOLECULE_COUNT];
38};
39
40#endif /* MOLECULEDESCRIPTORTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.