diff options
author | Paul Duffin <paulduffin@google.com> | 2017-06-21 08:29:30 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-06-21 08:29:30 +0000 |
commit | e1b439a06dc44be7e40e3c056fb21759bac1a6db (patch) | |
tree | 00fadfa42d8e151a9d17eec0fd03a4e7e8e91dc7 /test-runner/src/android | |
parent | 6aff0ffe8befb646f1aa46ea513e7e89701cec00 (diff) | |
parent | 4d7e8fb79e6cf3e294c130ace28c1c7de0af96f9 (diff) |
Merge "Cleanup a.t.InstrumentationTestRunner" am: 9d5576e081 am: 66b8ef6615
am: 4d7e8fb79e
Change-Id: I6d1de1dcb677e6c2c85c75fe8c5166b07cf713dd
Diffstat (limited to 'test-runner/src/android')
-rw-r--r-- | test-runner/src/android/test/InstrumentationTestRunner.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test-runner/src/android/test/InstrumentationTestRunner.java b/test-runner/src/android/test/InstrumentationTestRunner.java index 9bd4c966496d..6e5492bd751c 100644 --- a/test-runner/src/android/test/InstrumentationTestRunner.java +++ b/test-runner/src/android/test/InstrumentationTestRunner.java @@ -178,13 +178,13 @@ import junit.textui.ResultPrinter; public class InstrumentationTestRunner extends Instrumentation implements TestSuiteProvider { /** @hide */ - public static final String ARGUMENT_TEST_CLASS = "class"; + static final String ARGUMENT_TEST_CLASS = "class"; /** @hide */ - public static final String ARGUMENT_TEST_PACKAGE = "package"; + private static final String ARGUMENT_TEST_PACKAGE = "package"; /** @hide */ - public static final String ARGUMENT_TEST_SIZE_PREDICATE = "size"; + private static final String ARGUMENT_TEST_SIZE_PREDICATE = "size"; /** @hide */ - public static final String ARGUMENT_DELAY_MSEC = "delay_msec"; + static final String ARGUMENT_DELAY_MSEC = "delay_msec"; private static final String SMALL_SUITE = "small"; private static final String MEDIUM_SUITE = "medium"; @@ -208,7 +208,7 @@ public class InstrumentationTestRunner extends Instrumentation implements TestSu */ private static final float MEDIUM_SUITE_MAX_RUNTIME = 1000; - /** + /* * The following keys are used in the status bundle to provide structured reports to * an IInstrumentationWatcher. */ @@ -476,7 +476,7 @@ public class InstrumentationTestRunner extends Instrumentation implements TestSu /** * Returns the test predicate object, corresponding to the annotation class value provided via - * the {@link ARGUMENT_ANNOTATION} argument. + * the {@link #ARGUMENT_ANNOTATION} argument. * * @return the predicate or <code>null</code> */ @@ -490,7 +490,7 @@ public class InstrumentationTestRunner extends Instrumentation implements TestSu /** * Returns the negative test predicate object, corresponding to the annotation class value - * provided via the {@link ARGUMENT_NOT_ANNOTATION} argument. + * provided via the {@link #ARGUMENT_NOT_ANNOTATION} argument. * * @return the predicate or <code>null</code> */ |