source: molecuilder/src/unittests/AtomDescriptorTest.hpp@ 97f035

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

Added methods to query Molecules by ID

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