view src/Tests/unit_test.cpp @ 442:d4f24e221cd2
doc update
author |
heinrichsweikamp |
date |
Tue, 26 Jul 2016 12:15:12 +0200 (2016-07-26) |
parents |
cd2320cd6f9a |
children |
|
line source
//////////////////////////////////////////////////////////////////////////////
/// 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();
}