source: src/Potentials/unittests/BindingModelUnitTest.cpp@ 13e5be

stable v1.7.0
Last change on this file since 13e5be was c4afdf3, checked in by Frederik Heber <frederik.heber@…>, 4 years ago

Extended BindingModel by comparators.

  • this allows placing them in sorted STL containers.
  • TEST: Added unit test.
  • Property mode set to 100644
File size: 3.0 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2021 Frederik Heber. All rights reserved.
5 *
6 *
7 * This file is part of MoleCuilder.
8 *
9 * MoleCuilder is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * MoleCuilder is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/*
24 * BindingModelUnitTest.cpp
25 *
26 * Created on: May 14, 2021
27 * Author: heber
28 */
29
30// include config.h
31#ifdef HAVE_CONFIG_H
32#include <config.h>
33#endif
34
35using namespace std;
36
37#include <cppunit/CompilerOutputter.h>
38#include <cppunit/extensions/TestFactoryRegistry.h>
39#include <cppunit/ui/text/TestRunner.h>
40
41#include "BindingModelUnitTest.hpp"
42
43#include <boost/assign.hpp>
44#include <sstream>
45
46#include "CodePatterns/Assert.hpp"
47
48#include "Fragmentation/Homology/HomologyGraph.hpp"
49#include "Fragmentation/Graph.hpp"
50
51#include "Potentials/BindingModel.hpp"
52
53using namespace boost::assign;
54
55#ifdef HAVE_TESTRUNNER
56#include "UnitTestMain.hpp"
57#endif /*HAVE_TESTRUNNER*/
58
59/********************************************** Test classes **************************************/
60
61// Registers the fixture into the 'registry'
62CPPUNIT_TEST_SUITE_REGISTRATION( BindingModelTest );
63
64
65void BindingModelTest::setUp()
66{
67 // failing asserts should be thrown
68 ASSERT_DO(Assert::Throw);
69
70 // add edges
71 edges += std::make_pair(FragmentEdge(8,1),2);
72}
73
74
75void BindingModelTest::tearDown()
76{
77}
78
79/** UnitTest for operator<()
80 */
81void BindingModelTest::comparatorTest()
82{
83 // create homology graph for a water molecule
84 BindingModel::vector_nodes_t vector_nodes;
85 vector_nodes += FragmentNode(8,2), FragmentNode(1,1), FragmentNode(1,1);
86 const BindingModel model(vector_nodes, edges);
87
88 {
89 // create homology graph for a bond potential between 8 and 1
90 HomologyGraph::edges_t twobody_edges;
91 twobody_edges += std::make_pair(FragmentEdge(8,1),1);
92 BindingModel::vector_nodes_t twobody_vector_nodes;
93 twobody_vector_nodes += FragmentNode(8,1), FragmentNode(1,1);
94
95 const BindingModel twobody_model(twobody_vector_nodes, twobody_edges);
96
97 CPPUNIT_ASSERT( model > twobody_model);
98 }
99
100 {
101 // create homology graph for a angle potential between 1, 8 and 1
102 HomologyGraph::edges_t threebody_edges;
103 threebody_edges += std::make_pair(FragmentEdge(8,1),2);
104 BindingModel::vector_nodes_t threebody_vector_nodes;
105 threebody_vector_nodes += FragmentNode(8,2), FragmentNode(1,1), FragmentNode(1,1);
106
107 const BindingModel threebody_model(threebody_vector_nodes, threebody_edges);
108
109 CPPUNIT_ASSERT( model == threebody_model);
110 }
111}
Note: See TracBrowser for help on using the repository browser.