Added trivial test executable which doesn't use Catch's main() function.

This commit is contained in:
Fraser Hutchison
2014-03-07 21:48:46 +00:00
parent dd2810d60a
commit 70178026e6
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
/*
* Created by Fraser on 07/03/2014.
* Copyright 2014 Two Blue Cubes Ltd
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#define CATCH_CONFIG_RUNNER
#include "catch.hpp"
int main (int argc, char * const argv[]) {
return Catch::Session().run( argc, argv );
}