[c68409] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
[dbb533] | 9 | * ContinuousParameterTest.cpp
|
---|
[c68409] | 10 | *
|
---|
| 11 | * Created on: Sep 30, 2011
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[dbb533] | 20 | #include "ContinuousParameterTest.hpp"
|
---|
[c68409] | 21 |
|
---|
| 22 | #include <cppunit/CompilerOutputter.h>
|
---|
| 23 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
| 24 | #include <cppunit/ui/text/TestRunner.h>
|
---|
| 25 |
|
---|
[adcfc6] | 26 | #include "Parameters/Parameter.hpp"
|
---|
[c68409] | 27 |
|
---|
[7d1b6a] | 28 | #include "../Range.hpp"
|
---|
[c68409] | 29 |
|
---|
| 30 | #ifdef HAVE_TESTRUNNER
|
---|
| 31 | #include "UnitTestMain.hpp"
|
---|
| 32 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 33 |
|
---|
| 34 | // Registers the fixture into the 'registry'
|
---|
| 35 | CPPUNIT_TEST_SUITE_REGISTRATION( ContinuousParameterTest );
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | void ContinuousParameterTest::setUp()
|
---|
| 39 | {
|
---|
| 40 | // failing asserts should be thrown
|
---|
| 41 | ASSERT_DO(Assert::Throw);
|
---|
| 42 |
|
---|
[7d1b6a] | 43 | ValidIntRange = new range<int>(1,4);
|
---|
| 44 | ValidVectorRange = new range<Vector>(Vector(0,1,2), Vector(10,11,12));
|
---|
[c68409] | 45 | }
|
---|
| 46 |
|
---|
| 47 | void ContinuousParameterTest::tearDown()
|
---|
| 48 | {
|
---|
[7d1b6a] | 49 | delete ValidIntRange;
|
---|
| 50 | delete ValidVectorRange;
|
---|
[c68409] | 51 | }
|
---|
| 52 |
|
---|
| 53 | /************************************ tests ***********************************/
|
---|
| 54 |
|
---|
| 55 | /** Unit test for comparator.
|
---|
| 56 | *
|
---|
| 57 | */
|
---|
| 58 | void ContinuousParameterTest::comparatorTest()
|
---|
| 59 | {
|
---|
| 60 | // create instance
|
---|
[adcfc6] | 61 | Parameter<int> test("intParam", *ValidIntRange);
|
---|
| 62 | Parameter<int> samenamedsamevalued("intParam", *ValidIntRange);
|
---|
| 63 | Parameter<int> samenamedelsevalued("intParam", *ValidIntRange);
|
---|
| 64 | Parameter<int> elsenamedsamevalued("int2Param", *ValidIntRange);
|
---|
| 65 | Parameter<int> elsenamedelsevalued("int2Param", *ValidIntRange);
|
---|
| 66 | test.set(1);
|
---|
| 67 | samenamedsamevalued.set(1);
|
---|
| 68 | samenamedelsevalued.set(2);
|
---|
| 69 | elsenamedsamevalued.set(1);
|
---|
| 70 | elsenamedelsevalued.set(2);
|
---|
[c68409] | 71 |
|
---|
| 72 | CPPUNIT_ASSERT( test == samenamedsamevalued );
|
---|
| 73 | CPPUNIT_ASSERT( test != samenamedelsevalued );
|
---|
| 74 | CPPUNIT_ASSERT( test != elsenamedsamevalued );
|
---|
| 75 | CPPUNIT_ASSERT( test != elsenamedelsevalued );
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | /** Unit test for clone.
|
---|
| 79 | *
|
---|
| 80 | */
|
---|
| 81 | void ContinuousParameterTest::cloneTest()
|
---|
| 82 | {
|
---|
| 83 | // create instance
|
---|
[adcfc6] | 84 | Parameter<int> test("intParam", *ValidIntRange);
|
---|
[c68409] | 85 |
|
---|
| 86 | // check that we throw because of unset parameter
|
---|
| 87 | #ifndef NDEBUG
|
---|
| 88 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl;
|
---|
| 89 | CPPUNIT_ASSERT_THROW(test.clone(), Assert::AssertionFailure);
|
---|
| 90 | #endif
|
---|
| 91 |
|
---|
| 92 | // set parameter
|
---|
[adcfc6] | 93 | test.set(2);
|
---|
[c68409] | 94 |
|
---|
| 95 | // is returned as Parameter but we can compare only in true class as
|
---|
| 96 | // Parameter may also be a DiscreteParameter where comparison is nonsense
|
---|
[adcfc6] | 97 | Parameter<int> *instance = dynamic_cast< Parameter<int> *> (test.clone());
|
---|
[c68409] | 98 |
|
---|
| 99 | // different places in memory
|
---|
| 100 | CPPUNIT_ASSERT( &test != instance);
|
---|
| 101 |
|
---|
| 102 | // but same contents
|
---|
| 103 | CPPUNIT_ASSERT( test == *instance);
|
---|
| 104 | }
|
---|
| 105 |
|
---|