| Index: ios/chrome/app/tests_hook.h
|
| diff --git a/ios/chrome/app/tests_hook.h b/ios/chrome/app/tests_hook.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3a63b9392c095a54e1a7fe5c79ca6f3b37641d97
|
| --- /dev/null
|
| +++ b/ios/chrome/app/tests_hook.h
|
| @@ -0,0 +1,36 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef IOS_CHROME_APP_TESTS_HOOK_H_
|
| +#define IOS_CHROME_APP_TESTS_HOOK_H_
|
| +
|
| +namespace tests_hook {
|
| +
|
| +// Returns true if contextual search should be disabled to allow other tests
|
| +// to run unimpeded.
|
| +bool DisableContextualSearch();
|
| +
|
| +// Returns true if the first_run path should be disabled to allow other tests to
|
| +// run unimpeded.
|
| +bool DisableFirstRun();
|
| +
|
| +// Returns true if the signin recall promo should be disabled to allow other
|
| +// tests to run unimpeded.
|
| +bool DisableSigninRecallPromo();
|
| +
|
| +// Returns true if the update service should be disabled so that the update
|
| +// infobar won't be shown during testing.
|
| +bool DisableUpdateService();
|
| +
|
| +// Global integration tests setup. This is not used by EarlGrey-based
|
| +// integration tests.
|
| +void SetUpTestsIfPresent();
|
| +
|
| +// Runs the integration tests. This is not used by EarlGrey-based integration
|
| +// tests.
|
| +void RunTestsIfPresent();
|
| +
|
| +} // namespace tests_hook
|
| +
|
| +#endif // IOS_CHROME_APP_TESTS_HOOK_H_
|
|
|