summaryrefslogtreecommitdiff
path: root/test/unit/t_times.h
blob: 5bbadf2194c7a2692ec5e9a53a7541efa5d5a22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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 &copy);
  void operator=(const DateTimeTestCase &copy);
};

#endif /* _T_TIMES_H */