mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

WebRTC should not depend on Chromium's //base. Bug: webrtc:13662 Change-Id: I7ce7036c96b26a79de46a519ed24dd660a298433 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/260925 Commit-Queue: Björn Terelius <terelius@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Andrey Logvin <landrey@webrtc.org> Cr-Commit-Position: refs/heads/main@{#36754}
28 lines
1,003 B
Objective-C
28 lines
1,003 B
Objective-C
/*
|
|
* Copyright (c) 2021 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef TEST_IOS_GOOGLE_TEST_RUNNER_DELEGATE_H_
|
|
#define TEST_IOS_GOOGLE_TEST_RUNNER_DELEGATE_H_
|
|
|
|
// Copied from Chromium base/test/ios/google_test_runner_delegate.h
|
|
// to avoid the //base dependency. This protocol is required
|
|
// to run iOS Unittest.
|
|
@protocol GoogleTestRunnerDelegate
|
|
|
|
// Returns YES if this delegate supports running GoogleTests via a call to
|
|
// `runGoogleTests`.
|
|
@property(nonatomic, readonly, assign) BOOL supportsRunningGoogleTests;
|
|
|
|
// Runs GoogleTests and returns the final exit code.
|
|
- (int)runGoogleTests;
|
|
|
|
@end
|
|
|
|
#endif // TEST_IOS_GOOGLE_TEST_RUNNER_DELEGATE_H_
|