Searched refs:testCase (Results 1 – 10 of 10) sorted by relevance
44 public void add(String testCase) { in add() argument45 this.testCases.add(testCase); in add()76 for (TestCase testCase : testCaseEntity.getTestCases()) { in addTestCase()77 int result = testCase.result; in addTestCase()82 column.add(testCase.name); in addTestCase()
129 for (TestCase testCase : testCaseRunEntity.testCases) { in addTestRun()130 if (!testCaseNameMap.containsKey(testCase.name)) { in addTestRun()131 testCaseNameMap.put(testCase.name, testCaseNameMap.size()); in addTestRun()151 for (TestCase testCase : testCaseRunEntity.testCases) { in generateToTBreakdown()152 totResultCounts[testCase.result]++; in generateToTBreakdown()304 for (TestCase testCase : testCaseEntity.testCases) { in processReport()305 int result = testCase.result; in processReport()306 String name = testCase.name; in processReport()
93 public TestCaseReference(TestCase testCase) { in TestCaseReference() argument94 this(testCase.parentId, testCase.offset); in TestCaseReference()144 for (TestCaseReference testCase : this.failingTestCases) { in toEntity()145 failingTestcaseIds.add(testCase.parentId); in toEntity()146 failingTestcaseOffsets.add(testCase.offset); in toEntity()
181 for (TestCase testCase : this.testCases) { in toEntity()182 testCaseNames.add(testCase.name); in toEntity()183 results.add(testCase.result); in toEntity()
103 TestCase testCase = testCaseRunEntity.testCases.get(testCaseRef.offset); in getCurrentFailures() local104 failingTestcases.put(testCase.name, testCase); in getCurrentFailures()205 for (String testCase : ack.getTestCaseNames()) { in separateAcknowledged()206 if (testCases.contains(testCase)) { in separateAcknowledged()207 acknowledged.add(testCase); in separateAcknowledged()208 testCases.remove(testCase); in separateAcknowledged()271 for (TestCase testCase : testCaseRunEntity.testCases) { in getTestStatus()272 String testCaseName = testCase.name; in getTestStatus()273 TestCaseResult result = TestCaseResult.valueOf(testCase.result); in getTestStatus()297 testCaseBreakageMap.put(testCaseName, testCase); in getTestStatus()
70 ICaseResult testCase = mResult.getOrCreateResult(CLASS); in testCountResults() local71 testCase.getOrCreateResult(METHOD_1).failed(STACK_TRACE); in testCountResults()72 testCase.getOrCreateResult(METHOD_2).failed(STACK_TRACE); in testCountResults()73 testCase.getOrCreateResult(METHOD_3).passed(null); in testCountResults()
197 for (VtsReportMessage.TestCaseReportMessage testCase : report.getTestCaseList()) { in insertTestReport()198 String testCaseName = testCase.getName().toStringUtf8(); in insertTestReport()199 VtsReportMessage.TestCaseResult result = testCase.getTestResult(); in insertTestReport()206 if (testCase.getSystraceCount() > 0 in insertTestReport()207 && testCase.getSystraceList().get(0).getUrlCount() > 0) { in insertTestReport()208 String systraceLink = testCase.getSystraceList().get(0).getUrl(0).toStringUtf8(); in insertTestReport()213 for (VtsReportMessage.CoverageReportMessage coverage : testCase.getCoverageList()) { in insertTestReport()226 for (VtsReportMessage.ProfilingReportMessage profiling : testCase.getProfilingList()) { in insertTestReport()
106 column.data.forEach(function(testCase) { argument108 .text(testCase)
134 column.data.forEach(function(testCase) { argument136 .text(testCase)
232 ICaseResult testCase = module.getOrCreateResult(caseName); in getResultFromDir() local236 ITestResult test = testCase.getOrCreateResult(testName); in getResultFromDir()