diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-10 20:29:19 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-10 20:29:19 +0000 |
commit | 356eeb7a319b6ee865f5001d1e3d8fab2f57e3c0 (patch) | |
tree | b33b0f46f4c04d66c9e4b39eeba2598132052b47 /tests/xttest_main.cpp | |
parent | ba706261d3fc5b436aa6f09d57e62eeb77377d8f (diff) | |
download | LibXtract-356eeb7a319b6ee865f5001d1e3d8fab2f57e3c0.tar.gz LibXtract-356eeb7a319b6ee865f5001d1e3d8fab2f57e3c0.tar.bz2 LibXtract-356eeb7a319b6ee865f5001d1e3d8fab2f57e3c0.zip |
Initial unit testing setup with an example test
Diffstat (limited to 'tests/xttest_main.cpp')
-rw-r--r-- | tests/xttest_main.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/xttest_main.cpp b/tests/xttest_main.cpp new file mode 100644 index 0000000..01d7e43 --- /dev/null +++ b/tests/xttest_main.cpp @@ -0,0 +1,20 @@ + +#define CATCH_CONFIG_MAIN +#include "catch.hpp" + +//TEST_CASE("Scalar feature extraction functions", "[scalar]") +//{ +//// #include "containers.hpp" +//} +// +//TEST_CASE("Test Helper Functions", "[helpers]") { +//// #include "helpers.hpp" +//} + +//TEST_CASE("Test Integer Compatibility", "[ints]") { +//// #include "integers.hpp" +//} + +//TEST_CASE("Test Float Compatibility", "[floats]") { +//// #include "floats.hpp" +//} |