// Copyright 2019 Google LLC. All Rights Reserved. #import #include // Defined in cdm_test_main.cpp. int main(int argc, char** argv); @interface GtestTests : XCTestCase @end @implementation GtestTests - (void)testAll { testing::GTEST_FLAG(filter) = GTEST_FILTER; char arg0[] = "tests"; char* argv[] = {arg0, nullptr}; XCTAssertEqual(main(1, argv), 0); } @end