mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
44 lines
810 B
C++
44 lines
810 B
C++
#include <UnitTest++/UnitTest++.h>
|
|
#include <UnitTest++/AssertException.h>
|
|
#include <UnitTest++/ReportAssert.h>
|
|
|
|
using namespace UnitTest;
|
|
|
|
namespace {
|
|
|
|
TEST(ReportAssertThrowsAssertException)
|
|
{
|
|
bool caught = false;
|
|
|
|
try
|
|
{
|
|
ReportAssert("", "", 0);
|
|
}
|
|
catch(AssertException const&)
|
|
{
|
|
caught = true;
|
|
}
|
|
|
|
CHECK (true == caught);
|
|
}
|
|
|
|
TEST(ReportAssertSetsCorrectInfoInException)
|
|
{
|
|
const int lineNumber = 12345;
|
|
const char* description = "description";
|
|
const char* filename = "filename";
|
|
|
|
try
|
|
{
|
|
ReportAssert(description, filename, lineNumber);
|
|
}
|
|
catch(AssertException const& e)
|
|
{
|
|
CHECK_EQUAL(description, e.what());
|
|
CHECK_EQUAL(filename, e.Filename());
|
|
CHECK_EQUAL(lineNumber, e.LineNumber());
|
|
}
|
|
}
|
|
|
|
|
|
}
|