Searched refs:TEST_CASE_NAMES (Results 1 – 3 of 3) sorted by relevance
62 public static final String TEST_CASE_NAMES = "testCaseNames"; field in TestAcknowledgmentEntity168 ackEntity.setUnindexedProperty(TEST_CASE_NAMES, new ArrayList<>(this.testCaseNames)); in toEntity()204 if (e.hasProperty(TEST_CASE_NAMES)) in fromEntity()205 testCaseNames = (List<String>) e.getProperty(TEST_CASE_NAMES); in fromEntity()243 if (json.has(TEST_CASE_NAMES)) { in fromJson()244 testCaseNames = new Gson().fromJson(json.get(TEST_CASE_NAMES), listType); in fromJson()297 json.add(TEST_CASE_NAMES, new Gson().toJsonTree(testCaseNames)); in toJson()
44 public static final String TEST_CASE_NAMES = "testCaseNames"; field in TestCaseRunEntity185 testCaseRunEntity.setUnindexedProperty(TEST_CASE_NAMES, testCaseNames); in toEntity()209 if (e.hasProperty(TEST_CASE_NAMES) && e.hasProperty(RESULTS)) { in fromEntity()210 List<String> testCaseNames = (List<String>) e.getProperty(TEST_CASE_NAMES); in fromEntity()
79 ((List<String>) e.getProperty(TestAcknowledgmentEntity.TEST_CASE_NAMES)) in testEntitySerialization()107 Assert.assertFalse(e.hasProperty(TestAcknowledgmentEntity.TEST_CASE_NAMES)); in testEntitySerializationWithNulls()