From 7afa37b3210a45868a8266b137228cbc0f55a4de Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Sun, 1 Jun 2014 18:11:06 -0400 Subject: [PATCH] Added include from String and bad tests now print a line --- Tester/Test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tester/Test.cpp b/Tester/Test.cpp index c32a09e..9216847 100644 --- a/Tester/Test.cpp +++ b/Tester/Test.cpp @@ -2,6 +2,7 @@ #include #include "../Jupiter/Functions.h" #include "../Jupiter/CString.h" +#include "../Jupiter/String.h" #include "../Jupiter/File.h" #include "../Jupiter/Base64.h" #include "../Jupiter/InvalidIndex.h" @@ -15,6 +16,7 @@ void test(bool expr) { totalTests++; if (expr) goodTests++; + else printf("Test number %u failed!" ENDL, totalTests); } int main()