Refactoring and consolidating single-process / multi-process unit testing
Этот коммит содержится в:
gilbertlee-amd
2022-02-25 08:59:07 -07:00
коммит произвёл GitHub
родитель b569c0a1db
Коммит 29ad0f5fbe
98 изменённых файлов: 3684 добавлений и 5094 удалений
+11
Просмотреть файл
@@ -0,0 +1,11 @@
#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;
}