summaryrefslogtreecommitdiff
path: root/test/unit/t_expr.h
blob: 50813ea3a848959bc454a2914eb164f9642369e6 (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_EXPR_H
#define _T_EXPR_H

#include "UnitTests.h"

class ValueExprTestCase : public CPPUNIT_NS::TestCase
{
  CPPUNIT_TEST_SUITE(ValueExprTestCase);

  CPPUNIT_TEST(testConstructors);

  CPPUNIT_TEST_SUITE_END();

public:
  ValueExprTestCase() {}
  virtual ~ValueExprTestCase() {}

  virtual void setUp();
  virtual void tearDown();

  void testConstructors();

private:
  ValueExprTestCase(const ValueExprTestCase &copy);
  void operator=(const ValueExprTestCase &copy);
};

#endif // _T_EXPR_H