HelloAurora/Tests/Common/test.cpp
2022-02-19 22:45:49 +00:00

17 lines
365 B
C++

/***
Copyright 2020 Reece Wilson (a/k/a "Reece"). All rights reserved.
File: test.cpp
Date: 2020-6-12
Originator: Reece
Purpose: Lightweight and portable unit test abstraction
***/
#include <AuroraCommon.hpp>
#include "test.hpp"
#include <stdlib.h>
void Aurora::UnitTesting::EndTest(TestResponse response)
{
exit(ToExitCode(response));
}