From 921d15fd4f630599c9e34bf894291a5fdc07ccb4 Mon Sep 17 00:00:00 2001 From: Klemens David Morgenstern Date: Wed, 30 Jan 2019 16:25:14 +0800 Subject: [PATCH] broke cpputest --- test/cpputest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cpputest.cpp b/test/cpputest.cpp index d33e8dc..e74073d 100644 --- a/test/cpputest.cpp +++ b/test/cpputest.cpp @@ -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"