blob: 0caa03f545aace0dbe37fbdd3f780d8c6e99185c [file] [log] [blame]
/*
* main.cpp
*
* Created on: 10.08.2018
* Author: schnicke
*/
/* ************************************************
* Run test suite
* ************************************************/
#include "gtest/gtest.h"
int main(int argc, char **argv) {
// Init gtest framework
::testing::InitGoogleTest(&argc, argv);
// Run all tests
return RUN_ALL_TESTS();
}