source: molecuilder/src/unittests/MatrixUnitTest.hpp@ eb94c1

Last change on this file since eb94c1 was eb94c1, checked in by Saskia Metzler <metzler@…>, 16 years ago

Work-in-progress commit of change tracker and parser

  • Property mode set to 100644
File size: 502 bytes
RevLine 
[eb94c1]1/*
2 * MatrixUnitTest.hpp
3 *
4 * Created on: Mar 3, 2010
5 * Author: metzler
6 */
7
8#include <cppunit/extensions/HelperMacros.h>
9#include "Matrix.hpp"
10
11class MatrixUnitTest : public CppUnit::TestFixture
12{
13 CPPUNIT_TEST_SUITE( MatrixUnitTest ) ;
14 CPPUNIT_TEST ( setAndGetHeaderTest );
15 CPPUNIT_TEST ( assignAndGetValuesTest );
16 CPPUNIT_TEST_SUITE_END();
17
18public:
19 void setUp();
20 void tearDown();
21
22 void setAndGetHeaderTest();
23 void assignAndGetValuesTest();
24
25private:
26 Matrix* testMatrix;
27};
Note: See TracBrowser for help on using the repository browser.