20 lines
595 B
Objective-C
20 lines
595 B
Objective-C
// Copyright 2019 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef BASE_TEST_IOS_GOOGLE_TEST_RUNNER_DELEGATE_H_
|
|
#define BASE_TEST_IOS_GOOGLE_TEST_RUNNER_DELEGATE_H_
|
|
|
|
@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 // BASE_TEST_IOS_GOOGLE_TEST_RUNNER_DELEGATE_H_
|