[89a67f] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[89a67f] | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | * StringParameterUnitTest.cpp
|
---|
| 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 |
|
---|
| 20 | #include "StringParameterUnitTest.hpp"
|
---|
| 21 |
|
---|
| 22 | #include <cppunit/CompilerOutputter.h>
|
---|
| 23 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
| 24 | #include <cppunit/ui/text/TestRunner.h>
|
---|
| 25 |
|
---|
[118f1e] | 26 | #include "Parameters/Parameter.hpp"
|
---|
[89a67f] | 27 |
|
---|
| 28 | #include "CodePatterns/Assert.hpp"
|
---|
| 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( StringParameterTest );
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | void StringParameterTest::setUp()
|
---|
| 39 | {
|
---|
| 40 | // failing asserts should be thrown
|
---|
| 41 | ASSERT_DO(Assert::Throw);
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | void StringParameterTest::tearDown()
|
---|
| 45 | {
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | /************************************ tests ***********************************/
|
---|
| 49 |
|
---|
| 50 | /** Unit test for comparator.
|
---|
| 51 | *
|
---|
| 52 | */
|
---|
| 53 | void StringParameterTest::comparatorTest()
|
---|
| 54 | {
|
---|
| 55 | // create instance
|
---|
[118f1e] | 56 | Parameter<std::string> test("stringParam");
|
---|
| 57 | Parameter<std::string> samenamedsamevalued("stringParam");
|
---|
| 58 | Parameter<std::string> samenamedelsevalued("stringParam");
|
---|
| 59 | Parameter<std::string> elsenamedsamevalued("string2Param");
|
---|
| 60 | Parameter<std::string> elsenamedelsevalued("string2Param");
|
---|
[89a67f] | 61 | test.set(std::string("1"));
|
---|
| 62 | samenamedsamevalued.set(std::string("1"));
|
---|
| 63 | samenamedelsevalued.set(std::string("2"));
|
---|
| 64 | elsenamedsamevalued.set(std::string("1"));
|
---|
| 65 | elsenamedelsevalued.set(std::string("2"));
|
---|
| 66 |
|
---|
| 67 | CPPUNIT_ASSERT( test == samenamedsamevalued );
|
---|
| 68 | CPPUNIT_ASSERT( test != samenamedelsevalued );
|
---|
| 69 | CPPUNIT_ASSERT( test != elsenamedsamevalued );
|
---|
| 70 | CPPUNIT_ASSERT( test != elsenamedelsevalued );
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | /** Unit test for clone.
|
---|
| 74 | *
|
---|
| 75 | */
|
---|
| 76 | void StringParameterTest::cloneTest()
|
---|
| 77 | {
|
---|
| 78 | // create instance
|
---|
[118f1e] | 79 | Parameter<std::string> test("intParam");
|
---|
[89a67f] | 80 |
|
---|
| 81 | // set parameter
|
---|
| 82 | test.set(std::string("1"));
|
---|
| 83 |
|
---|
| 84 | // is returned as Parameter but we can compare only in true class as
|
---|
| 85 | // Parameter may also be a DiscreteParameter where comparison is nonsense
|
---|
[118f1e] | 86 | Parameter<std::string> *instance = dynamic_cast< Parameter<std::string> *> (test.clone());
|
---|
[89a67f] | 87 |
|
---|
| 88 | // different places in memory
|
---|
| 89 | CPPUNIT_ASSERT( &test != instance);
|
---|
| 90 |
|
---|
| 91 | // but same contents
|
---|
| 92 | CPPUNIT_ASSERT( test == *instance);
|
---|
| 93 | }
|
---|
| 94 |
|
---|