Searched refs:PASS_COUNT (Results 1 – 5 of 5) sorted by relevance
45 public static final String PASS_COUNT = "passCount"; field in TestStatusEntity139 testEntity.setProperty(PASS_COUNT, this.passCount); in toEntity()176 if (e.hasProperty(PASS_COUNT)) { in fromEntity()177 passCount = ((Long) e.getProperty(PASS_COUNT)).intValue(); in fromEntity()
64 public static final String PASS_COUNT = "passCount"; field in TestPlanRunEntity196 planRun.setProperty(PASS_COUNT, this.passCount); in toEntity()259 || !e.hasProperty(PASS_COUNT) in fromEntity()271 long passCount = (long) e.getProperty(PASS_COUNT); in fromEntity()304 json.add(PASS_COUNT, new JsonPrimitive(this.passCount)); in toJson()
130 public static final String PASS_COUNT = "passCount"; field in TestRunEntity237 testRunEntity.setProperty(PASS_COUNT, this.passCount); in toEntity()351 || !e.hasProperty(PASS_COUNT) in fromEntity()362 long passCount = (long) e.getProperty(PASS_COUNT); in fromEntity()423 json.add(PASS_COUNT, new JsonPrimitive(this.passCount)); in toJson()
200 new PropertyProjection(TestStatusEntity.PASS_COUNT, Long.class)) in doGetHandler()
62 PASSING("passing", TestRunEntity.PASS_COUNT, false),