source: src/FunctionApproximation/unittests/ExtractorsUnitTest.hpp@ fdd789

Fix_FitPotential_needs_atomicnumbers
Last change on this file since fdd789 was a13e21, checked in by Frederik Heber <heber@…>, 9 years ago

REFACTOR: Removed many unused functions from Extractor namespace.

  • TESTFIX: Extractor unit test now only checks on getAllSymmetricDistances().
  • Property mode set to 100644
File size: 717 bytes
Line 
1/*
2 * ExtractorsUnitTest.hpp
3 *
4 * Created on: Oct 16, 2012
5 * Author: heber
6 */
7
8#ifndef FUNCTIONARGUMENTUNITTEST_HPP_
9#define FUNCTIONARGUMENTUNITTEST_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 ExtractorsTest : public CppUnit::TestFixture
22{
23 CPPUNIT_TEST_SUITE( ExtractorsTest) ;
24 CPPUNIT_TEST ( gatherAllSymmetricDistancesTest );
25 CPPUNIT_TEST_SUITE_END();
26
27public:
28 void setUp();
29 void tearDown();
30 void gatherAllSymmetricDistancesTest();
31
32private:
33};
34
35#endif /* FUNCTIONARGUMENTUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.