add simple unittest
This commit is contained in:
14
test/test_runner.cpp
Normal file
14
test/test_runner.cpp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user