/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/ |
D | HostTestTest.java | 39 import com.android.tradefed.result.TestDescription; 616 TestDescription test1 = new TestDescription(SuccessTestCase.class.getName(), "testPass"); in testRun_testcase() 617 TestDescription test2 = new TestDescription(SuccessTestCase.class.getName(), "testPass2"); in testRun_testcase() 635 TestDescription test1 = new TestDescription(TestMetricTestCase.class.getName(), "testPass"); in testRun_MetricTestCase() 636 TestDescription test2 = in testRun_MetricTestCase() 637 new TestDescription(TestMetricTestCase.class.getName(), "testPass2"); in testRun_MetricTestCase() 661 TestDescription test1 = new TestDescription(LogMetricTestCase.class.getName(), "testPass"); in testRun_LogMetricTestCase() 662 TestDescription test2 = new TestDescription(LogMetricTestCase.class.getName(), "testPass2"); in testRun_LogMetricTestCase() 693 TestDescription test1 = new TestDescription(TestMetricTestCase.class.getName(), "testPass"); in testRun_MetricTestCase_withOption() 694 TestDescription test2 = in testRun_MetricTestCase_withOption() [all …]
|
D | InstrumentationFileTestTest.java | 37 import com.android.tradefed.result.TestDescription; 107 final Collection<TestDescription> testsList = new ArrayList<>(1); in testRun_singleSuccessfulTest() 108 final TestDescription test = new TestDescription("ClassFoo", "methodBar"); in testRun_singleSuccessfulTest() 118 listener.testStarted(TestDescription.convertToIdentifier(test)); in testRun_singleSuccessfulTest() 120 TestDescription.convertToIdentifier(test), Collections.emptyMap()); in testRun_singleSuccessfulTest() 167 final Collection<TestDescription> testsList = new ArrayList<>(1); in testRun_reRunOneFailedToCompleteTest() 168 final TestDescription test1 = new TestDescription("ClassFoo1", "methodBar1"); in testRun_reRunOneFailedToCompleteTest() 169 final TestDescription test2 = new TestDescription("ClassFoo2", "methodBar2"); in testRun_reRunOneFailedToCompleteTest() 170 final TestDescription test3 = new TestDescription("ClassFoo3", "methodBar3"); in testRun_reRunOneFailedToCompleteTest() 183 listener.testStarted(TestDescription.convertToIdentifier(test1)); in testRun_reRunOneFailedToCompleteTest() [all …]
|
D | PythonUnitTestResultParserTest.java | 30 import com.android.tradefed.result.TestDescription; 156 TestDescription[] ids = {new TestDescription("a", "b")}; in testParseSingleTestPass() 195 TestDescription[] ids = {new TestDescription("a", "b")}; in testParseSingleTestPassWithExpectedFailure() 216 TestDescription[] ids = {new TestDescription("a", "b"), new TestDescription("c", "d")}; in testParseMultiTestPass() 237 TestDescription[] ids = {new TestDescription("a", "b"), new TestDescription("c", "d")}; in testParseMultiTestPassWithOneExpectedFailure() 258 TestDescription[] ids = {new TestDescription("a", "b"), new TestDescription("c", "d")}; in testParseMultiTestPassWithAllExpectedFailure() 286 TestDescription[] ids = {new TestDescription("a", "b")}; in testParseSingleTestFail() 313 TestDescription[] ids = {new TestDescription("a", "b"), new TestDescription("c", "d")}; in testParseSubtestFailure() 342 TestDescription[] ids = {new TestDescription("a", "b"), new TestDescription("c", "d")}; in testParseMultiTestFailWithExpectedFailure() 362 TestDescription[] ids = {new TestDescription("a", "b")}; in testParseSingleTestUnexpectedSuccess() [all …]
|
D | GTestResultParserTest.java | 23 import com.android.tradefed.result.TestDescription; 46 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseSimpleFile() 48 (TestDescription) EasyMock.anyObject(), in testParseSimpleFile() 70 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseSimpleFileNoTimes() 72 (TestDescription) EasyMock.anyObject(), in testParseSimpleFileNoTimes() 110 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseLargerFile() 112 (TestDescription) EasyMock.anyObject(), in testParseLargerFile() 135 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseWithFailures() 137 (TestDescription) EasyMock.anyObject(), in testParseWithFailures() 140 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseWithFailures() [all …]
|
D | DeviceTestCaseTest.java | 25 import com.android.tradefed.result.TestDescription; 117 final TestDescription test1 = new TestDescription(MockTest.class.getName(), "test1"); in testRun_suite() 118 final TestDescription test2 = new TestDescription(MockTest.class.getName(), "test2"); in testRun_suite() 142 final TestDescription test1 = new TestDescription(MockTest.class.getName(), "test1"); in testRun_includeFilter() 164 final TestDescription test2 = new TestDescription(MockTest.class.getName(), "test2"); in testRun_excludeFilter() 186 final TestDescription test1 = in testRun_includeAnnotationFiltering() 187 new TestDescription(MockAnnotatedTest.class.getName(), "test1"); in testRun_includeAnnotationFiltering() 203 Capture<TestDescription> capture = new Capture<>(); in testRun_checkAnnotation() 216 List<TestDescription> descriptions = capture.getValues(); in testRun_checkAnnotation() 218 for (TestDescription desc : descriptions) { in testRun_checkAnnotation() [all …]
|
D | GTestXmlResultParserTest.java | 22 import com.android.tradefed.result.TestDescription; 81 TestDescription firstInFile = new TestDescription("InteropTest", "test_lookup_hit"); in testParseSimpleFile() 91 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseSimpleFile() 93 (TestDescription) EasyMock.anyObject(), in testParseSimpleFile() 119 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseLargerFile() 121 (TestDescription) EasyMock.anyObject(), in testParseLargerFile() 149 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseWithFailures() 151 (TestDescription) EasyMock.anyObject(), in testParseWithFailures() 155 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseWithFailures() 157 (TestDescription) EasyMock.anyObject(), EasyMock.eq(expectedMessage)); in testParseWithFailures() [all …]
|
D | GTestListTestParserTest.java | 25 import com.android.tradefed.result.TestDescription; 49 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseSimpleList() 51 (TestDescription) EasyMock.anyObject(), in testParseSimpleList() 74 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseMultiClassList() 76 (TestDescription) EasyMock.anyObject(), in testParseMultiClassList() 112 TestDescription test1 = in testParseSimpleList_withSpecialChar() 113 new TestDescription( in testParseSimpleList_withSpecialChar() 120 TestDescription test2 = in testParseSimpleList_withSpecialChar() 121 new TestDescription( in testParseSimpleList_withSpecialChar() 151 mockRunListener.testStarted((TestDescription) EasyMock.anyObject()); in testParseParameterized() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/ |
D | GranularRetriableTestWrapperTest.java | 42 import com.android.tradefed.result.TestDescription; 79 protected ArrayList<TestDescription> mTestCases; 81 protected Map<TestDescription, Integer> mBecomePass = new HashMap<>(); 82 protected Map<TestDescription, Boolean> mShouldFail; 89 TestDescription defaultTestCase = new TestDescription("ClassFoo", "TestFoo"); in BasicFakeTest() 91 mShouldFail = new HashMap<TestDescription, Boolean>(); in BasicFakeTest() 95 public BasicFakeTest(ArrayList<TestDescription> testCases) { in BasicFakeTest() 97 mShouldFail = new HashMap<TestDescription, Boolean>(); in BasicFakeTest() 98 for (TestDescription testCase : testCases) { in BasicFakeTest() 104 public void addFailedTestCase(TestDescription testCase) { in addFailedTestCase() [all …]
|
D | ModuleDefinitionTest.java | 57 import com.android.tradefed.result.TestDescription; 161 TestDescription test = new TestDescription(mRunName + "class", "test" + i); in run() 231 TestDescription test = new TestDescription(runName + "class", "test" + i); in run() 239 TestDescription test = new TestDescription(runName + "class", "fail" + i); in run() 539 mMockListener.testStarted((TestDescription) EasyMock.anyObject(), EasyMock.anyLong()); in testRun_aggregateRunFailures() 541 (TestDescription) EasyMock.anyObject(), in testRun_aggregateRunFailures() 930 mMockListener.testStarted((TestDescription) EasyMock.anyObject(), EasyMock.anyLong()); in testRun_fullPass() 932 (TestDescription) EasyMock.anyObject(), in testRun_fullPass() 981 mMockListener.testStarted((TestDescription) EasyMock.anyObject(), EasyMock.anyLong()); in testRun_partialRun() 983 (TestDescription) EasyMock.anyObject(), in testRun_partialRun() [all …]
|
D | ModuleListenerTest.java | 25 import com.android.tradefed.result.TestDescription; 55 TestDescription tid = new TestDescription("class", "test" + i); in testRegularExecution() 69 TestDescription tid = new TestDescription("class", "test" + numTests); in testRun_missingTests() 89 TestDescription tid = new TestDescription("class", "test" + numTests); in testInternalRerun() 98 TestDescription tid2 = new TestDescription("class", "test" + i); in testInternalRerun() 116 TestDescription tid = new TestDescription("class", "test" + i); in testMultiTestRun() 124 TestDescription tid = new TestDescription("class2", "test" + i); in testMultiTestRun() 169 TestDescription test = new TestDescription("ApexServiceTest", "Activate"); in testRetryInvalid()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/result/ |
D | TestRunResultTest.java | 44 TestDescription test = new TestDescription("FooTest", "testBar"); in testGetNumTestsInState() 60 TestDescription test = new TestDescription("FooTest", "testBar"); in testGetNumTestsInState_failed() 82 TestDescription test = new TestDescription("FooTest", "testBar"); in testSpecifyElapsedTime() 124 TestDescription test1 = new TestDescription("FooTest1", "testBar1"); in testMultiRun_WithTestCases() 125 TestDescription test2 = new TestDescription("FooTest2", "testBar2"); in testMultiRun_WithTestCases() 165 TestDescription test = new TestDescription("FooTest", "testBar"); in testLogSavedFile_testCases() 191 TestDescription test = new TestDescription("FooTest", "testBar"); in testLogSavedFile_runLogs() 240 TestDescription testcase1 = new TestDescription("Foo", "foo"); in testMergeRetriedRunResults_fullMergeLogicCheck() 241 TestDescription testcase2 = new TestDescription("Bar", "bar"); in testMergeRetriedRunResults_fullMergeLogicCheck() 242 TestDescription testcase3 = new TestDescription("Baz", "baz"); in testMergeRetriedRunResults_fullMergeLogicCheck() [all …]
|
D | CollectingTestListenerTest.java | 63 final TestDescription test = injectTestRun("run", "testFoo", METRIC_VALUE, 0); in testSingleRun() 104 final TestDescription test1 = injectTestRun("run1", "testFoo1", METRIC_VALUE, 0); in testTwoRuns() 105 final TestDescription test2 = injectTestRun("run2", "testFoo2", METRIC_VALUE2, 0); in testTwoRuns() 129 final TestDescription test1 = injectTestRun("run", "testFoo1", METRIC_VALUE, 0); in testReRun() 130 final TestDescription test2 = injectTestRun("run", "testFoo2", METRIC_VALUE2, 0); in testReRun() 199 mCollectingTestListener.testStarted(new TestDescription("FooTest", "incomplete")); in testSingleRun_incomplete() 295 final TestDescription test = new TestDescription("FooTest", "testName1"); in testSingleRun_multi() 301 final TestDescription test2 = new TestDescription("FooTest", "testName2"); in testSingleRun_multi() 319 final TestDescription test2 = new TestDescription("FooTest", "testName2"); in testSingleRun_multi_failureRunFirst() 326 final TestDescription test = new TestDescription("FooTest", "testName1"); in testSingleRun_multi_failureRunFirst() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/binary/ |
D | ExecutableTargetTestTest.java | 30 import com.android.tradefed.result.TestDescription; 88 TestDescription description) {} in testRun_cmdSuccess() 97 TestDescription testDescription = new TestDescription(testName1, testName1); in testRun_cmdSuccess() 105 TestDescription testDescription2 = new TestDescription(testName2, testName2); in testRun_cmdSuccess() 132 TestDescription description) {} in testRun_pathNotExist() 176 TestDescription description) { in testRun_cmdFailed() 187 TestDescription testDescription = new TestDescription(testName1, testName1); in testRun_cmdFailed() 196 TestDescription testDescription2 = new TestDescription(testName2, testName2); in testRun_cmdFailed() 225 TestDescription description) {} in testRun_addExcludeFilter() 233 TestDescription testDescription = new TestDescription(testName1, testName1); in testRun_addExcludeFilter() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/retry/ |
D | ResultAggregatorTest.java | 33 import com.android.tradefed.result.TestDescription; 100 TestDescription test1 = new TestDescription("classname", "test1"); in testForwarding() 101 TestDescription test2 = new TestDescription("classname", "test2"); in testForwarding() 216 TestDescription test1 = new TestDescription("classname", "test1"); in testForwarding_runFailure() 217 TestDescription test2 = new TestDescription("classname", "test2"); in testForwarding_runFailure() 314 TestDescription test1 = new TestDescription("classname", "test1"); in testForwarding_runFailure_noRerun() 315 TestDescription test2 = new TestDescription("classname", "test2"); in testForwarding_runFailure_noRerun() 395 TestDescription test1 = new TestDescription("classname", "test1"); in testForwarding_runFailure_aggregation() 396 TestDescription test2 = new TestDescription("classname", "test2"); in testForwarding_runFailure_aggregation() 511 TestDescription test1 = new TestDescription("classname", "test1"); in testForwarding_noModules() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/retry/ |
D | ResultsPlayerTest.java | 31 import com.android.tradefed.result.TestDescription; 87 TestDescription test = new TestDescription("test.class", "method0"); in testReplay() 91 TestDescription testFail = new TestDescription("test.class", "fail0"); in testReplay() 116 TestDescription test = new TestDescription("test.class", "method0"); in testReplayModules() 120 TestDescription testFail = new TestDescription("test.class", "fail0"); in testReplayModules() 132 test = new TestDescription("test.class", "method0"); in testReplayModules() 136 testFail = new TestDescription("test.class", "fail0"); in testReplayModules() 154 TestDescription test = new TestDescription("test.class", "method0"); in testReplay_oneTest() 161 Entry<TestDescription, TestResult> entry = new SimpleEntry<>(test, result); in testReplay_oneTest() 183 TestDescription test = new TestDescription("test.class", "method0"); in testReplay_MultiTest() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/junit4/ |
D | DeviceParameterizedRunnerTest.java | 28 import com.android.tradefed.result.TestDescription; 120 TestDescription test1 = in testRun() 121 new TestDescription(TestJUnitParamsClass.class.getName(), "testOne"); in testRun() 125 TestDescription test2_p1 = in testRun() 126 new TestDescription(TestJUnitParamsClass.class.getName(), "testTwo[0]"); in testRun() 130 TestDescription test2_2 = in testRun() 131 new TestDescription(TestJUnitParamsClass.class.getName(), "testTwo[1]"); in testRun() 150 TestDescription test1 = in testRun_collectOnly() 151 new TestDescription(TestJUnitParamsClass.class.getName(), "testOne"); in testRun_collectOnly() 155 TestDescription test2_p1 = in testRun_collectOnly() [all …]
|
/tools/tradefederation/core/invocation_interfaces/com/android/tradefed/result/ |
D | TestRunResult.java | 46 private Map<TestDescription, TestResult> mTestResults = 47 new LinkedHashMap<TestDescription, TestResult>(); 86 public Map<TestDescription, TestResult> getTestResults() { in getTestResults() 101 public Set<TestDescription> getCompletedTests() { in getCompletedTests() 112 public Set<TestDescription> getFailedTests() { in getFailedTests() 117 private Set<TestDescription> getTestsInState(List<TestStatus> statuses) { in getTestsInState() 118 Set<TestDescription> tests = new LinkedHashSet<>(); in getTestsInState() 119 for (Map.Entry<TestDescription, TestResult> testEntry : getTestResults().entrySet()) { in getTestsInState() 269 public void testStarted(TestDescription test) { in testStarted() 273 public void testStarted(TestDescription test, long startTime) { in testStarted() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/result/proto/ |
D | ProtoResultParserTest.java | 35 import com.android.tradefed.result.TestDescription; 143 TestDescription test1 = new TestDescription("class1", "test1"); in testEvents() 144 TestDescription test2 = new TestDescription("class1", "test2"); in testEvents() 328 TestDescription test1 = new TestDescription("class1", "test1"); in testRunFail_interleavedWithTest() 363 TestDescription test1 = new TestDescription("class1", "test1"); in testEvents_finaleProto() 364 TestDescription test2 = new TestDescription("class1", "test2"); in testEvents_finaleProto() 424 TestDescription test1 = new TestDescription("class1", "test1"); in testRunFail_interleavedWithTest_finalProto() 460 TestDescription test1 = new TestDescription("class1", "test1"); in testRunFail_failureDescription() 507 TestDescription test1 = new TestDescription("class1", "test1"); in testRun_withAttempts() 558 TestDescription test1 = new TestDescription("class1", "test1"); in testEvents_subprocess() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/ |
D | BaseDeviceMetricCollectorTest.java | 34 import com.android.tradefed.result.TestDescription; 81 TestDescription test = new TestDescription("class", "method"); in testInitAndForwarding() 170 TestDescription test = new TestDescription("class", "method"); in testForwarding_withException() 331 TestDescription test = null; in verifyFiltering() 333 test = new TestDescription("class", "method", annot); in verifyFiltering() 335 test = new TestDescription("class", "method"); in verifyFiltering() 447 TestDescription test1 = new TestDescription(TestRunAnnotated.class.getName(), "testOne"); in testActualRunAnnotated_include() 448 TestDescription test2 = new TestDescription(TestRunAnnotated.class.getName(), "testTwo"); in testActualRunAnnotated_include() 449 TestDescription test3 = new TestDescription(TestRunAnnotated.class.getName(), "testThree"); in testActualRunAnnotated_include() 500 TestDescription test1 = new TestDescription(TestRunAnnotated.class.getName(), "testOne"); in testActualRunAnnotated_exclude() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
D | JUnitXmlParserTest.java | 23 import com.android.tradefed.result.TestDescription; 67 TestDescription test1 = new TestDescription("PassTest", "testPass"); in testParse() 71 TestDescription test2 = new TestDescription("PassTest", "testPass2"); in testParse() 75 TestDescription test3 = new TestDescription("FailTest", "testFail"); in testParse() 91 TestDescription test1 = new TestDescription("PassTest", "testPass"); in testParseErrorAndSkipped() 95 TestDescription test2 = new TestDescription("SkippedTest", "testSkip"); in testParseErrorAndSkipped() 100 TestDescription test3 = new TestDescription("ErrorTest", "testFail"); in testParseErrorAndSkipped() 118 TestDescription test1 = new TestDescription("JUnitXmlParser", "normal_integration_tests"); in testParseError_format() 132 TestDescription test = new TestDescription( in testParseBazelShTestXml()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/postprocessor/ |
D | BasePostProcessorTest.java | 30 import com.android.tradefed.result.TestDescription; 59 TestDescription test, in processTestMetricsAndLogs() 114 Map<TestDescription, Map<String, LogFile>> allTestLogs) { in processAllTestMetricsAndLogs() argument 132 for (TestDescription test : allTestLogs.keySet()) { in processAllTestMetricsAndLogs() 267 TestDescription test1 = new TestDescription("class", "test1"); in testRunLevelPostProcessing_processRunLogsOnly() 268 TestDescription test2 = new TestDescription("class", "test2"); in testRunLevelPostProcessing_processRunLogsOnly() 348 TestDescription test = new TestDescription("class", "test"); in testPerTestLogPostProcessing_processTestLogs() 400 TestDescription test = new TestDescription("class", "test"); in testPerTestLogPostProcessing_processTestLogsOnly() 441 TestDescription test1 = new TestDescription("class", "test1"); in testPerTestPostProcessing_logToTestAssociation() 442 TestDescription test2 = new TestDescription("class", "test2"); in testPerTestPostProcessing_logToTestAssociation() [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/postprocessor/ |
D | BasePostProcessor.java | 30 import com.android.tradefed.result.TestDescription; 54 private Map<TestDescription, Map<String, LogFile>> mTestLogs = new LinkedHashMap<>(); 58 private TestDescription mCurrentTest = null; 68 TestDescription testDescription, in processTestMetricsAndLogs() 78 Map<TestDescription, Map<String, LogFile>> allTestLogs) { in processAllTestMetricsAndLogs() argument 192 public final void testStarted(TestDescription test) { in testStarted() 197 public final void testStarted(TestDescription test, long startTime) { in testStarted() 209 public final void testFailed(TestDescription test, String trace) { in testFailed() 214 public final void testFailed(TestDescription test, FailureDescription failure) { in testFailed() 219 public final void testEnded(TestDescription test, Map<String, String> testMetrics) { in testEnded() [all …]
|
/tools/tradefederation/contrib/tests/src/com/android/regression/tests/ |
D | MetricsXmlParserTest.java | 33 import com.android.tradefed.result.TestDescription; 93 final TestDescription testId0 = new TestDescription("Test", "pass1"); in testSimpleParse() 96 final TestDescription testId1 = new TestDescription("Test", "pass2"); in testSimpleParse() 99 final TestDescription testId2 = new TestDescription("Test", "pass3"); in testSimpleParse() 122 final TestDescription testId0 = new TestDescription("Test", "pass1"); in testParse() 128 final TestDescription testId1 = new TestDescription("Test", "pass2"); in testParse() 157 final TestDescription testId0 = new TestDescription("Test", "pass1"); in testParseBlacklist() 163 final TestDescription testId1 = new TestDescription("Test", "pass2"); in testParseBlacklist()
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | TestResultListener.java | 35 private TestDescription mCurrentTest; 38 public abstract void testResult(TestDescription test, TestResult result); in testResult() 41 public final void testStarted(TestDescription test, long startTime) { in testStarted() 52 public final void testStarted(TestDescription test) { in testStarted() 57 public final void testFailed(TestDescription test, String trace) { in testFailed() 63 public final void testAssumptionFailure(TestDescription test, String trace) { in testAssumptionFailure() 69 public final void testIgnored(TestDescription test) { in testIgnored() 74 public final void testEnded(TestDescription test, Map<String, String> testMetrics) { in testEnded() 80 public final void testEnded(TestDescription test, HashMap<String, Metric> testMetrics) { in testEnded() 87 TestDescription test, long endTime, Map<String, String> testMetrics) { in testEnded() [all …]
|
/tools/tradefederation/core/test_result_interfaces/com/android/tradefed/result/ |
D | TestDescription.java | 28 public final class TestDescription implements Serializable, Comparable<TestDescription> { class 44 public TestDescription(String className, String testName) { in TestDescription() method in TestDescription 68 public TestDescription(String className, String testName, Annotation... annotations) { in TestDescription() method in TestDescription 80 public TestDescription(String className, String testName, Collection<Annotation> annotations) { in TestDescription() method in TestDescription 134 TestDescription other = (TestDescription) obj; in equals() 143 public int compareTo(TestDescription o) { in compareTo() 158 public static TestDescription fromString(String data) { in fromString() 161 return new TestDescription(segments[0], segments[1]); in fromString() 173 public static TestDescription createFromTestIdentifier(TestIdentifier testId) { in createFromTestIdentifier() 174 return new TestDescription(testId.getClassName(), testId.getTestName()); in createFromTestIdentifier() [all …]
|