source: src/Helpers/unittests/InfoUnitTest.hpp@ 11c4b5

Last change on this file since 11c4b5 was 3f2719, checked in by Frederik Heber <heber@…>, 15 years ago

Moved ChronosTest's InfoTest over to InfoTest::NumberInfosTest where it belongs.

  • Property mode set to 100644
File size: 706 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 config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <cppunit/extensions/HelperMacros.h>
17
18class info;
19
20/********************************************** Test classes **************************************/
21
22class InfoTest : public CppUnit::TestFixture
23{
24 CPPUNIT_TEST_SUITE( InfoTest) ;
25 CPPUNIT_TEST ( FunctionTest );
26 CPPUNIT_TEST ( NumberInfosTest );
27 CPPUNIT_TEST_SUITE_END();
28
29public:
30 void setUp();
31 void tearDown();
32 void FunctionTest();
33 void NumberInfosTest();
34
35private:
36
37};
38
39#endif /* INFOUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.