10 lines
168 B
C++
10 lines
168 B
C++
#include "tests.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
Test::RunAll();
|
|
return RUN_ALL_TESTS();
|
|
}
|