Mercurial > public > hwos_code
comparison 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 |
comparison
equal
deleted
inserted
replaced
284:d1117b99fd99 | 285:cd2320cd6f9a |
---|---|
1 ////////////////////////////////////////////////////////////////////////////// | |
2 /// main_test.cpp | |
3 /// Launch all defined GoogleTest unit tests defined. | |
4 /// Copyright (c) 2012-2015, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
5 ////////////////////////////////////////////////////////////////////////////// | |
6 // HISTORY | |
7 // 2015-05-23 jDG: Rewrite compass testing, to allow reducing code size. | |
8 | |
9 #include <gtest/gtest.h> | |
10 | |
11 int main(int argc, char *argv[]) | |
12 { | |
13 ::testing::InitGoogleTest(&argc, argv); | |
14 return RUN_ALL_TESTS(); | |
15 } | |
16 |