28 lines
504 B
C++
28 lines
504 B
C++
#ifndef _T_TIMES_H
|
|
#define _T_TIMES_H
|
|
|
|
#include "UnitTests.h"
|
|
|
|
class DateTimeTestCase : public CPPUNIT_NS::TestCase
|
|
{
|
|
CPPUNIT_TEST_SUITE(DateTimeTestCase);
|
|
|
|
CPPUNIT_TEST(testConstructors);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
DateTimeTestCase() {}
|
|
virtual ~DateTimeTestCase() {}
|
|
|
|
virtual void setUp();
|
|
virtual void tearDown();
|
|
|
|
void testConstructors();
|
|
|
|
private:
|
|
DateTimeTestCase(const DateTimeTestCase ©);
|
|
void operator=(const DateTimeTestCase ©);
|
|
};
|
|
|
|
#endif /* _T_TIMES_H */
|