Searched refs:COVERED_LINE_COUNT (Results 1 – 4 of 4) sorted by relevance
53 public static final String COVERED_LINE_COUNT = "coveredLineCount"; field in TestCoverageStatusEntity201 testEntity.setProperty(COVERED_LINE_COUNT, this.coveredLineCount); in toEntity()218 || !e.hasProperty(COVERED_LINE_COUNT) in fromEntity()231 coveredLineCount = (Long) e.getProperty(COVERED_LINE_COUNT); in fromEntity()
58 public static final String COVERED_LINE_COUNT = "coveredCount"; field in CoverageEntity215 coverageEntity.setUnindexedProperty(COVERED_LINE_COUNT, coveredCount); in toEntity()236 || !e.hasProperty(COVERED_LINE_COUNT) in fromEntity()246 long coveredLineCount = (long) e.getProperty(COVERED_LINE_COUNT); in fromEntity()
52 public static final String COVERED_LINE_COUNT = "coveredLineCount"; field in CodeCoverageEntity130 codeCoverageEntity.setProperty(COVERED_LINE_COUNT, this.coveredLineCount); in toEntity()
448 … json.add(CodeCoverageEntity.COVERED_LINE_COUNT, new JsonPrimitive(coveredLineCount)); in toJson()