/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2010 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /* * MatrixContainerUnitTest.cpp * * Created on: Sep 16, 2011 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif using namespace std; #include #include #include #include "MatrixContainerUnitTest.hpp" #ifdef HAVE_TESTRUNNER #include "UnitTestMain.hpp" #endif /*HAVE_TESTRUNNER*/ /********************************************** Test classes **************************************/ // Registers the fixture into the 'registry' CPPUNIT_TEST_SUITE_REGISTRATION( MatrixContainerTest ); void MatrixContainerTest::setUp() { }; void MatrixContainerTest::tearDown() { }; /** UnitTest for serialization */ void MatrixContainerTest::SerializationTest() { CPPUNIT_ASSERT_EQUAL( true , true ); };