source: src/Potentials/Subgraph/unittests/SubgraphEdgeUnitTest.hpp@ 6d08032

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

tempcommit: Replaced boost::adjacency_list by PotentialSubgraph.

  • Property mode set to 100644
File size: 834 bytes
Line 
1/*
2 * SubgraphEdgeUnitTest.hpp
3 *
4 * Created on: Oct 03, 2016
5 * Author: heber
6 */
7
8#ifndef POTENTIALS_SUBGRAPHUNITTEST_HPP_
9#define POTENTIALS_SUBGRAPHUNITTEST_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 SubgraphEdgeTest : public CppUnit::TestFixture
22{
23 CPPUNIT_TEST_SUITE( SubgraphEdgeTest) ;
24 CPPUNIT_TEST ( ComparatorTest );
25 CPPUNIT_TEST ( EqualityTest );
26 CPPUNIT_TEST ( TypeComparatorTest );
27 CPPUNIT_TEST_SUITE_END();
28
29public:
30 void setUp();
31 void tearDown();
32 void ComparatorTest();
33 void EqualityTest();
34 void TypeComparatorTest();
35
36private:
37};
38
39#endif /* POTENTIALS_SUBGRAPHUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.