29ad0f5fbe
Refactoring and consolidating single-process / multi-process unit testing
12 línte
336 B
C++
12 línte
336 B
C++
#include <gtest/gtest.h>
|
|
#include "EnvVars.hpp"
|
|
#include "TestBed.hpp"
|
|
int main(int argc, char **argv)
|
|
{
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
RcclUnitTesting::EnvVars::ShowConfig();
|
|
int retCode = RUN_ALL_TESTS();
|
|
printf("[ INFO ] Total executed cases: %d\n", RcclUnitTesting::TestBed::NumTestsRun());
|
|
return retCode;
|
|
}
|