Mercurial > public > hwos_code
view src/Tests/unit_test.cpp @ 402:a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
Slightly reduce max. backlight levels
author | heinrichsweikamp |
---|---|
date | Sun, 10 Jan 2016 09:36:47 +0100 |
parents | cd2320cd6f9a |
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(); }