source: src/Helpers/unittests/InfoUnitTest.hpp@ 3f2719

Last change on this file since 3f2719 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
RevLine 
[a80f419]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
[70672e3]11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
[a80f419]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 );
[3f2719]26 CPPUNIT_TEST ( NumberInfosTest );
[a80f419]27 CPPUNIT_TEST_SUITE_END();
28
29public:
30 void setUp();
31 void tearDown();
32 void FunctionTest();
[3f2719]33 void NumberInfosTest();
[a80f419]34
35private:
36
37};
38
39#endif /* INFOUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.