SaturateAtoms_singleDegree
Line | |
---|
1 | /*
|
---|
2 | * SaturatedFragmentUnitTest.hpp
|
---|
3 | *
|
---|
4 | * Created on: Aug 09, 2012
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef SATURATEDFRAGMENTUNITTEST_HPP_
|
---|
9 | #define SATURATEDFRAGMENTUNITTEST_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 |
|
---|
17 | #include <cppunit/extensions/HelperMacros.h>
|
---|
18 |
|
---|
19 | #include "Fragmentation/Exporters/HydrogenPool.hpp"
|
---|
20 | #include "Fragmentation/Exporters/SaturatedFragment.hpp"
|
---|
21 |
|
---|
22 | class KeySet;
|
---|
23 |
|
---|
24 | /********************************************** Test classes **************************************/
|
---|
25 |
|
---|
26 | class SaturatedFragmentTest : public CppUnit::TestFixture
|
---|
27 | {
|
---|
28 | CPPUNIT_TEST_SUITE( SaturatedFragmentTest) ;
|
---|
29 | CPPUNIT_TEST ( getKeySet_Test );
|
---|
30 | CPPUNIT_TEST_SUITE_END();
|
---|
31 |
|
---|
32 | public:
|
---|
33 | void setUp();
|
---|
34 | void tearDown();
|
---|
35 | void getKeySet_Test();
|
---|
36 |
|
---|
37 | private:
|
---|
38 | HydrogenPool hydrogens;
|
---|
39 | SaturatedFragment::KeySetsInUse_t KeySetsInUse;
|
---|
40 | KeySet *set;
|
---|
41 | SaturatedFragment *fragment;
|
---|
42 | };
|
---|
43 |
|
---|
44 | #endif /* SATURATEDFRAGMENTUNITTEST_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.