|
Last change
on this file since a80f419 was a80f419, checked in by Frederik Heber <heber@…>, 15 years ago |
|
First version.
Everything was extracted from project MoleCuilder and adapted such that it
runs on its own (i.e. new configure.ac, Makefile.am structure, stuff for
libtool versioning, ...)
|
-
Property mode
set to
100644
|
|
File size:
569 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * InfoUnitTest.hpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: Nov 25, 2009
|
|---|
| 5 | * Author: heber
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef INFOUNITTEST_HPP_
|
|---|
| 9 | #define INFOUNITTEST_HPP_
|
|---|
| 10 |
|
|---|
| 11 | #include <cppunit/extensions/HelperMacros.h>
|
|---|
| 12 |
|
|---|
| 13 | class info;
|
|---|
| 14 |
|
|---|
| 15 | /********************************************** Test classes **************************************/
|
|---|
| 16 |
|
|---|
| 17 | class InfoTest : public CppUnit::TestFixture
|
|---|
| 18 | {
|
|---|
| 19 | CPPUNIT_TEST_SUITE( InfoTest) ;
|
|---|
| 20 | CPPUNIT_TEST ( FunctionTest );
|
|---|
| 21 | CPPUNIT_TEST_SUITE_END();
|
|---|
| 22 |
|
|---|
| 23 | public:
|
|---|
| 24 | void setUp();
|
|---|
| 25 | void tearDown();
|
|---|
| 26 | void FunctionTest();
|
|---|
| 27 |
|
|---|
| 28 | private:
|
|---|
| 29 |
|
|---|
| 30 | };
|
|---|
| 31 |
|
|---|
| 32 | #endif /* INFOUNITTEST_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.