view src/Tests/main_test.cpp @ 283:a2e19988e959

1.82beta with new compass calib code
author heinrichsweikamp
date Wed, 27 May 2015 10:57:29 +0200
parents 7d9edd3b8c86
children
line wrap: on
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();
}