Mercurial > public > hwos_code
diff src/Tests/unit_test.cpp @ 285:cd2320cd6f9a
NEW unit tests for gas volumes...
author | jdg@air |
---|---|
date | Fri, 29 May 2015 01:25:45 +0200 |
parents | src/Tests/main_test.cpp@7d9edd3b8c86 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/Tests/unit_test.cpp Fri May 29 01:25:45 2015 +0200 @@ -0,0 +1,16 @@ +////////////////////////////////////////////////////////////////////////////// +/// main_test.cpp +/// Launch all defined GoogleTest unit tests defined. +/// Copyright (c) 2012-2015, JD Gascuel, HeinrichsWeikamp, all right reserved. +////////////////////////////////////////////////////////////////////////////// +// HISTORY +// 2015-05-23 jDG: Rewrite compass testing, to allow reducing code size. + +#include <gtest/gtest.h> + +int main(int argc, char *argv[]) +{ + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} +