source: src/Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp@ cdac1d

SaturateAtoms_singleDegree
Last change on this file since cdac1d was 7d5fcd, checked in by Frederik Heber <heber@…>, 12 years ago

Added SaturatedFragment as a wrapper to KeySet with saturation hydrogens.

  • Property mode set to 100644
File size: 970 bytes
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
22class KeySet;
23
24/********************************************** Test classes **************************************/
25
26class SaturatedFragmentTest : public CppUnit::TestFixture
27{
28 CPPUNIT_TEST_SUITE( SaturatedFragmentTest) ;
29 CPPUNIT_TEST ( getKeySet_Test );
30 CPPUNIT_TEST_SUITE_END();
31
32public:
33 void setUp();
34 void tearDown();
35 void getKeySet_Test();
36
37private:
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.