From 74579fbadf0f89154cba5d9157a57f59fcda8f70 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Mon, 26 Aug 2019 21:38:34 +0200 Subject: Improved testing framework. (#4376) --- tests/Generating/LoadablePieces.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/Generating/LoadablePieces.cpp') diff --git a/tests/Generating/LoadablePieces.cpp b/tests/Generating/LoadablePieces.cpp index 58b65464d..26cec8627 100644 --- a/tests/Generating/LoadablePieces.cpp +++ b/tests/Generating/LoadablePieces.cpp @@ -11,6 +11,7 @@ #include #define GetCurrentFolder getcwd #endif +#include "../TestHelpers.h" #include "Generating/PrefabPiecePool.h" @@ -29,8 +30,8 @@ static int DoLoaderTest(void) LOG("Loaded %u regular pieces and %u starting pieces", static_cast(test.GetAllPiecesCount()), static_cast(test.GetStartingPiecesCount())); // Check that we loaded all the pieces: - testassert(test.GetAllPiecesCount() == 1); - testassert(test.GetStartingPiecesCount() == 1); + TEST_EQUAL(test.GetAllPiecesCount(), 1); + TEST_EQUAL(test.GetStartingPiecesCount(), 1); return 0; } -- cgit v1.2.3