From 47e24eece15121c917a30166037cbb072bb6a443 Mon Sep 17 00:00:00 2001 From: Adam Domurad Date: Wed, 21 Nov 2012 12:37:38 -0500 Subject: Add UnitTest++ source code into ITW, without integration. --- tests/UnitTest++/src/ReportAssert.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/UnitTest++/src/ReportAssert.cpp (limited to 'tests/UnitTest++/src/ReportAssert.cpp') diff --git a/tests/UnitTest++/src/ReportAssert.cpp b/tests/UnitTest++/src/ReportAssert.cpp new file mode 100644 index 0000000..a1810d9 --- /dev/null +++ b/tests/UnitTest++/src/ReportAssert.cpp @@ -0,0 +1,10 @@ +#include "AssertException.h" + +namespace UnitTest { + +void ReportAssert(char const* description, char const* filename, int lineNumber) +{ + throw AssertException(description, filename, lineNumber); +} + +} -- cgit v1.2.3