summaryrefslogtreecommitdiffstats
path: root/cxxtest/sample/DeltaTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'cxxtest/sample/DeltaTest.h')
-rw-r--r--cxxtest/sample/DeltaTest.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/cxxtest/sample/DeltaTest.h b/cxxtest/sample/DeltaTest.h
deleted file mode 100644
index 7223c3af2..000000000
--- a/cxxtest/sample/DeltaTest.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef __DELTATEST_H
-#define __DELTATEST_H
-
-#include <cxxtest/TestSuite.h>
-#include <math.h>
-
-class DeltaTest : public CxxTest::TestSuite
-{
- double _pi, _delta;
-
-public:
- void setUp()
- {
- _pi = 3.1415926535;
- _delta = 0.0001;
- }
-
- void testSine()
- {
- TS_ASSERT_DELTA( sin(0.0), 0.0, _delta );
- TS_ASSERT_DELTA( sin(_pi / 6), 0.5, _delta );
- TS_ASSERT_DELTA( sin(_pi / 2), 1.0, _delta );
- TS_ASSERT_DELTA( sin(_pi), 0.0, _delta );
- }
-};
-
-#endif // __DELTATEST_H