15 lines
337 B
C++
15 lines
337 B
C++
#include <stdio.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
//-------------------------------------------------------------------------------------
|
|
int main(int argc, char* argv[])
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
uint32_t seed = (uint32_t)::time(0);
|
|
//seed = 1748961760;
|
|
srand(seed);
|
|
printf("seed=%d\n", seed);
|
|
|
|
return RUN_ALL_TESTS();
|
|
}
|