eedb/tests/unit/main.cpp
2017-03-05 18:25:38 +01:00

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;
}