source: src/Fragmentation/Summation/Containers/unittests/MPQCDataUnitTest.hpp

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

Placed Containers, Converter, and SetValues as subfolders into Summation.

  • also libMolecuilderFragmentationSummation is now a shared library, easing linkage to libMolecuilderJobs, and contains all of the three convenience libraries.
  • libMolecuilderFragmentationSetValues is now again convenience, as contained in ..Summation which in turn is shared.
  • KeySetsContainer right now is the link between lib..Summation and lib.. Fragmentation. Hence, we had to extract the module and change it into a shared library, as it is required by libMolecuilderJobs through ..Summation but also by ..Fragmentation that heavily relies on this container.
  • moved parseKeySetFile down into Fragmentation folder to KeySetsContainer, it is also contained in new shared library libMolecuilderFragmentation_ KeySetsContainer.
  • Property mode set to 100644
File size: 778 bytes
Line 
1/*
2 * MPQCDataUnitTest.hpp
3 *
4 * Created on: Feb 9, 2012
5 * Author: heber
6 */
7
8#ifndef MPQCDATAUNITTEST_HPP_
9#define MPQCDATAUNITTEST_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <string>
17
18#include <cppunit/extensions/HelperMacros.h>
19
20class MPQCData;
21
22
23/********************************************** Test classes **************************************/
24
25class MPQCDataTest : public CppUnit::TestFixture
26{
27 CPPUNIT_TEST_SUITE( MPQCDataTest) ;
28 CPPUNIT_TEST ( operatorTest );
29 CPPUNIT_TEST ( serializationTest );
30 CPPUNIT_TEST_SUITE_END();
31
32public:
33 void setUp();
34 void tearDown();
35 void operatorTest();
36 void serializationTest();
37
38private:
39 MPQCData *data;
40};
41
42#endif /* MPQCDATAUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.