source: src/Potentials/unittests/SerializablePotentialUnitTest.hpp@ a844d8

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

SerializablePotential is new type to be stored in PotentialRegistry.

  • added new class SerializablePotential with operator<<() and ..>>() and a a set of virtual functions to be implemented in deriving classes.
  • added unit test SerializablePotentialUnitTest and mock implementation of such a SerializablePotential.
  • added exceptions, thrown when parsing of potential containing line fails.
  • NOTE: empty name/key of a parameter are not printed on output.
  • Property mode set to 100644
File size: 874 bytes
Line 
1/*
2 * SerializablePotentialUnitTest.hpp
3 *
4 * Created on: Nov 23, 2012
5 * Author: heber
6 */
7
8#ifndef SERIALIZABLEPOTENTIALUNITTEST_HPP_
9#define SERIALIZABLEPOTENTIALUNITTEST_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 "stubs/SerializablePotentialMock.hpp"
20
21/********************************************** Test classes **************************************/
22
23class SerializablePotentialTest : public CppUnit::TestFixture
24{
25 CPPUNIT_TEST_SUITE( SerializablePotentialTest) ;
26 CPPUNIT_TEST ( inputTest );
27 CPPUNIT_TEST ( outputTest );
28 CPPUNIT_TEST_SUITE_END();
29
30public:
31 void setUp();
32 void tearDown();
33 void inputTest();
34 void outputTest();
35
36private:
37 SerializablePotentialMock mockpotential;
38};
39
40#endif /* SERIALIZABLEPOTENTIALUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.