source: src/Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp@ cdac1d

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

Added OrthogonalSummation and unit test.

  • Property mode set to 100644
File size: 909 bytes
Line 
1/*
2 * OrthogonalSummationUnitTest.hpp
3 *
4 * Created on: Jun 26, 2012
5 * Author: heber
6 */
7
8#ifndef ORTHOGONALSUMMATIONUNITTEST_HPP_
9#define ORTHOGONALSUMMATIONUNITTEST_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/Summation/IndexSetContainer.hpp"
20#include "Fragmentation/Summation/SubsetMap.hpp"
21
22
23/********************************************** Test classes **************************************/
24
25class OrthogonalSummationTest : public CppUnit::TestFixture
26{
27 CPPUNIT_TEST_SUITE( OrthogonalSummationTest) ;
28 CPPUNIT_TEST ( operator_staticTest );
29 CPPUNIT_TEST_SUITE_END();
30
31public:
32 void setUp();
33 void tearDown();
34 void operator_staticTest();
35
36private:
37 SubsetMap::ptr subsetmap;
38 IndexSetContainer::ptr container;
39};
40
41#endif /* ORTHOGONALSUMMATIONUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.