Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/cpputest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ TEST_GROUP(ClassName)

TEST(ClassName, Create)
{
CHECK(true);
CHECK(false);
CHECK_EQUAL(1,1);
LONGS_EQUAL(1,1);
LONGS_EQUAL(2,1);
DOUBLES_EQUAL(1.000, 1.001, .01);
STRCMP_EQUAL("hello", "hello");
// FAIL("The prior tests pass, but this one doesn't");
FAIL("The prior tests pass, but this one doesn't");
}

#include "CppUTest/CommandLineTestRunner.h"
Expand Down