/*** 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 #include "test.hpp" #include void Aurora::UnitTesting::EndTest(TestResponse response) { exit(ToExitCode(response)); }