15 lines
228 B
C++
15 lines
228 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include <Wt/Test/WTestEnvironment>
|
|
|
|
int main( int argc, char * argv[] )
|
|
{
|
|
// Init gtest.
|
|
testing::InitGoogleTest( &argc, argv );
|
|
|
|
// Run all tests.
|
|
int result = RUN_ALL_TESTS();
|
|
|
|
return result;
|
|
}
|