Searched refs:testCaseRunEntity (Results 1 – 5 of 5) sorted by relevance
171 Entity testCaseRunEntity; in toEntity() local173 testCaseRunEntity = new Entity(KeyFactory.createKey(KIND, id)); in toEntity()175 testCaseRunEntity = new Entity(KIND); in toEntity()185 testCaseRunEntity.setUnindexedProperty(TEST_CASE_NAMES, testCaseNames); in toEntity()186 testCaseRunEntity.setUnindexedProperty(RESULTS, results); in toEntity()189 testCaseRunEntity.setUnindexedProperty(SYSTRACE_URL, this.systraceUrl); in toEntity()192 return testCaseRunEntity; in toEntity()
46 TestCaseRunEntity testCaseRunEntity = new TestCaseRunEntity(); in saveTest() local50 testCaseRunEntity.addTestCase(testCaseName, result); in saveTest()52 TestCaseRunEntity loadedTestCaseRunEntity = saveClearLoad(testCaseRunEntity); in saveTest()
238 TestCaseRunEntity testCaseRunEntity = testCaseRunEntityList.get(testCaseRunEntityIndex); in insertTestReport() local239 if (!testCaseRunEntity.addTestCase(testCaseName, result.getNumber())) { in insertTestReport()240 testCaseRunEntity = new TestCaseRunEntity(); in insertTestReport()241 testCaseRunEntity.addTestCase(testCaseName, result.getNumber()); in insertTestReport()242 testCaseRunEntityList.add(testCaseRunEntity); in insertTestReport()397 testCaseRunEntity -> in insertTestReport()398 testCaseRunEntity.getId()) in insertTestReport()
126 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(e); in addTestRun() local127 if (testCaseRunEntity == null) continue; in addTestRun()128 testCaseRunMap.get(testRun.getKey()).add(testCaseRunEntity); in addTestRun()129 for (TestCase testCase : testCaseRunEntity.testCases) { in addTestRun()150 for (TestCaseRunEntity testCaseRunEntity : testCaseResults) { in generateToTBreakdown()151 for (TestCase testCase : testCaseRunEntity.testCases) { in generateToTBreakdown()
99 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(testCaseRun); in getCurrentFailures() local100 if (testCaseRunEntity.testCases.size() <= testCaseRef.offset) { in getCurrentFailures()103 TestCase testCase = testCaseRunEntity.testCases.get(testCaseRef.offset); in getCurrentFailures()266 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(testCaseRun); in getTestStatus() local267 if (testCaseRunEntity == null) { in getTestStatus()271 for (TestCase testCase : testCaseRunEntity.testCases) { in getTestStatus()