Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: base/test/android/javatests/src/org/chromium/base/test/SetUpTestRule.java

Issue 2770393002: Add setup action interface (Closed)
Patch Set: Add tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.base.test;
6
7 import org.junit.rules.TestRule;
8
9 /**
10 * An interface for TestRules that can be configured to automatically run set-up logic prior
11 * to @Before.
12 *
13 * TestRules that implement this interface should return a {@link SetUpStatement } from their {@link
14 * TestRule#apply} method
15 *
16 * @param <T> TestRule type that implements this SetUpTestRule
17 */
18 public interface SetUpTestRule<T extends TestRule> {
19 /**
20 * Set whether the TestRule should run setUp automatically.
21 *
22 * So TestRule can be declared in test like this:
23 * <code>
24 * &#064;Rule TestRule mRule = new MySetUpTestRule().shouldSetUp(true);
25 * </code>
26 *
27 * @return itself to chain up the calls for convenience
28 */
29 T shouldSetUp(boolean runSetUp);
30
31 /**
32 * Specify setUp action in this method
33 */
34 void setUp();
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698