Public Member Functions
SimplestTestSuite Class Reference

#include <simple_test.h>

Public Member Functions

void testMyTest ()
 
void testSIZEOFLONG ()
 
- Public Member Functions inherited from CxxTest::TestSuite
virtual ~TestSuite ()
 
virtual void setUp ()
 
virtual void tearDown ()
 

Detailed Description

Definition at line 6 of file simple_test.h.

Member Function Documentation

void SimplestTestSuite::testMyTest ( )
inline

Definition at line 9 of file simple_test.h.

10  {
11  float fnum = 2.00001f;
12  TS_ASSERT_DELTA (fnum, 2.0f, 0.0001f);
13  }
f
Definition: cfModGcd.cc:4022
#define TS_ASSERT_DELTA(x, y, d)
Definition: TestSuite.h:373
void SimplestTestSuite::testSIZEOFLONG ( )
inline

Definition at line 15 of file simple_test.h.

16  {
17  TS_ASSERT( sizeof(long) == SIZEOF_LONG ); // correct config.h?
18  }
#define TS_ASSERT(e)
Definition: TestSuite.h:239

The documentation for this class was generated from the following file: