| 325 | //********************************************************************************************* |
| 326 | |
| 327 | int testsMain( int argc, char ** argv, std::string_view testSuiteName ) |
| 328 | { |
| 329 | std::locale::global( std::locale{ "C" } ); |
| 330 | testing::InitGoogleTest( &argc, argv ); |
| 331 | auto suite = std::make_unique< test::TestSuite >( std::string{ testSuiteName } ); |
| 332 | testing::AddGlobalTestEnvironment( suite.release() ); |
| 333 | return RUN_ALL_TESTS(); |
| 334 | } |
| 335 | |
| 336 | std::string sortLines( std::string const & value ) |
| 337 | { |
nothing calls this directly
no outgoing calls
no test coverage detected