|
Last change
on this file since 8931ef 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:
459 bytes
|
| Rev | Line | |
|---|
| [a80f419] | 1 | /*
|
|---|
| 2 | * logunittest.hpp
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifndef LOGTEST_HPP_
|
|---|
| 6 | #define LOGTEST_HPP_
|
|---|
| 7 |
|
|---|
| 8 | #include <cppunit/extensions/HelperMacros.h>
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 | /********************************************** Test classes **************************************/
|
|---|
| 12 |
|
|---|
| 13 | class LogTest : public CppUnit::TestFixture
|
|---|
| 14 | {
|
|---|
| 15 | CPPUNIT_TEST_SUITE( LogTest) ;
|
|---|
| 16 | CPPUNIT_TEST ( logTest );
|
|---|
| 17 | CPPUNIT_TEST_SUITE_END();
|
|---|
| 18 |
|
|---|
| 19 | public:
|
|---|
| 20 | void setUp();
|
|---|
| 21 | void tearDown();
|
|---|
| 22 |
|
|---|
| 23 | void logTest();
|
|---|
| 24 | };
|
|---|
| 25 |
|
|---|
| 26 | #endif /* LOGTEST_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.