summaryrefslogtreecommitdiff
path: root/examples/cppunittest/assertion_traitsTest.h
blob: 207d943423741728cd7824650383b4b39ce49278 (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
#ifndef ASSERTIONTRAITSTEST_H
#define ASSERTIONTRAITSTEST_H

#include <cppunit/extensions/HelperMacros.h>

class assertion_traitsTest : public CPPUNIT_NS::TestFixture
{
  CPPUNIT_TEST_SUITE( assertion_traitsTest );
  CPPUNIT_TEST( test_toString );
  CPPUNIT_TEST_SUITE_END();

public:

  assertion_traitsTest();

  void test_toString();


private:
  assertion_traitsTest( const assertion_traitsTest &copy );
  void operator =( const assertion_traitsTest &copy );

private:
};

#endif