24 lines
409 B
Plaintext
24 lines
409 B
Plaintext
// Copyright 2019 Google LLC. All Rights Reserved.
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
// 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
|