mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2025-12-26 06:32:31 +00:00
16 lines
403 B
C++
16 lines
403 B
C++
/**
|
|
* @file tests/tests_main.cpp
|
|
* @brief Entry point definition.
|
|
*/
|
|
#include "tests_common.h"
|
|
#include "tests_environment.h"
|
|
#include "tests_events.h"
|
|
|
|
int
|
|
main(int argc, char **argv) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
testing::AddGlobalTestEnvironment(new SunshineEnvironment);
|
|
testing::UnitTest::GetInstance()->listeners().Append(new SunshineEventListener);
|
|
return RUN_ALL_TESTS();
|
|
}
|