add simple unittest

This commit is contained in:
Benjamin Sergeant
2018-12-29 18:33:15 -08:00
parent 3b67032adb
commit 43cd6d34ca
17 changed files with 15196 additions and 1 deletions

14
test/test_runner.cpp Normal file
View File

@ -0,0 +1,14 @@
/*
* test_runner.cpp
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone. All rights reserved.
*/
#define CATCH_CONFIG_RUNNER
#include "catch.hpp"
int main(int argc, char* argv[])
{
int result = Catch::Session().run(argc, argv);
return result;
}