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

SaturateAtoms_singleDegree
Last change on this file since cdac1d was 64cafb2, checked in by Frederik Heber <heber@…>, 9 years ago

Revert "Trimmed down SphericalPointDistribution to what is needed at the moment."

This reverts commit 0241c59e7f10c73f87336715af0aadac2b2d4db1.

  • Property mode set to 100644
File size: 923 bytes
Line 
1/*
2 * SphericalPointDistributionUnitTest.hpp
3 *
4 * Created on: May 29, 2014
5 * Author: heber
6 */
7
8#ifndef SPHERICALPOINTDISTRIBUTIONUNITTEST_HPP_
9#define SPHERICALPOINTDISTRIBUTIONUNITTEST_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/********************************************** Test classes **************************************/
20
21class SphericalPointDistributionTest : public CppUnit::TestFixture
22{
23 CPPUNIT_TEST_SUITE( SphericalPointDistributionTest) ;
24 CPPUNIT_TEST ( matchSphericalPointDistributionsTest_2 );
25 CPPUNIT_TEST ( matchSphericalPointDistributionsTest_3 );
26 CPPUNIT_TEST_SUITE_END();
27
28public:
29 void setUp();
30 void tearDown();
31 void matchSphericalPointDistributionsTest_2();
32 void matchSphericalPointDistributionsTest_3();
33
34private:
35};
36
37#endif /* SPHERICALPOINTDISTRIBUTIONUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.