File: assertion_traitsTest.h

package info (click to toggle)
cppunit 1.13.2-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,980 kB
  • ctags: 3,579
  • sloc: cpp: 18,338; sh: 14,983; ansic: 3,011; makefile: 423; xml: 58; csh: 6
file content (27 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (7)
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