source: src/Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp

Candidate_v1.6.1
Last change on this file was c3df23, checked in by Frederik Heber <heber@…>, 12 years ago

Added HydrogenPool for controlling a set of saturation hydrogens.

  • Property mode set to 100644
File size: 826 bytes
RevLine 
[c3df23]1/*
2 * HydrogenPoolUnitTest.hpp
3 *
4 * Created on: Aug 09, 2012
5 * Author: heber
6 */
7
8#ifndef HYDROGENPOOLUNITTEST_HPP_
9#define HYDROGENPOOLUNITTEST_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
19class HydrogenPool;
20
21/********************************************** Test classes **************************************/
22
23class HydrogenPoolTest : public CppUnit::TestFixture
24{
25 CPPUNIT_TEST_SUITE( HydrogenPoolTest) ;
26 CPPUNIT_TEST ( lease_releaseHydrogen_Test );
27 CPPUNIT_TEST ( requestHydrogen_Test );
28 CPPUNIT_TEST_SUITE_END();
29
30public:
31 void setUp();
32 void tearDown();
33 void lease_releaseHydrogen_Test();
34 void requestHydrogen_Test();
35
36private:
37 HydrogenPool *pool;
38};
39
40#endif /* HYDROGENPOOLUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.