F´ Flight Software - C/C++ Documentation NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TestMain.cpp
Go to the documentation of this file.
1// ----------------------------------------------------------------------
2// TestMain.cpp
3// ----------------------------------------------------------------------
4
5#include "STest/Random/Random.hpp"
6#include "gtest/gtest.h"
7
8int main(int argc, char** argv) {
9 ::testing::InitGoogleTest(&argc, argv);
10 STest::Random::seed();
11
12 return RUN_ALL_TESTS();
13}
int main(int argc, char **argv)
Definition TestMain.cpp:8
void InitGoogleTest()
Definition gtest.cc:6730