diff options
author | Steve M. Robbins <smr@sumost.ca> | 2001-07-13 03:32:16 +0000 |
---|---|---|
committer | Steve M. Robbins <smr@sumost.ca> | 2001-07-13 03:32:16 +0000 |
commit | 8cdfc19f2213bf1de4aee4bc5e799af49b6608d0 (patch) | |
tree | a2ee78ef29c07a7cf5d5077885364b9d86ecc69a /examples/cppunittest/TestAssertTest.h | |
parent | c9e6d8ad1f9201030bbfeb27164cf748c96f21c6 (diff) | |
download | cppunit-8cdfc19f2213bf1de4aee4bc5e799af49b6608d0.tar.gz |
Add tests for CPPUNIT_ASSERT_EQUAL.
Diffstat (limited to 'examples/cppunittest/TestAssertTest.h')
-rw-r--r-- | examples/cppunittest/TestAssertTest.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/cppunittest/TestAssertTest.h b/examples/cppunittest/TestAssertTest.h index 718366c..d2be44b 100644 --- a/examples/cppunittest/TestAssertTest.h +++ b/examples/cppunittest/TestAssertTest.h @@ -9,6 +9,7 @@ class TestAssertTest : public CppUnit::TestCase CPPUNIT_TEST_SUITE( TestAssertTest ); CPPUNIT_TEST( testAssertTrue ); CPPUNIT_TEST( testAssertFalse ); + CPPUNIT_TEST( testAssertEqual ); CPPUNIT_TEST( testAssertMessageTrue ); CPPUNIT_TEST( testAssertMessageFalse ); CPPUNIT_TEST( testAssertDoubleEquals ); @@ -28,6 +29,8 @@ public: void testAssertTrue(); void testAssertFalse(); + void testAssertEqual(); + void testAssertMessageTrue(); void testAssertMessageFalse(); |