Fix JSON deserialization in coverage tests

This commit is contained in:
Svyatoslav Scherbina
2020-06-04 19:43:16 +03:00
committed by SvyatoslavScherbina
parent a4bd200ea9
commit d69fbf90b4
@@ -5,17 +5,17 @@ import com.google.gson.annotations.*
data class LlvmCovReportFunction(
val name: String,
val count: Int,
val regions: List<List<Int>>,
val filenames: List<String>
@Expose val name: String,
@Expose val count: Int,
@Expose val regions: List<List<Int>>,
@Expose val filenames: List<String>
)
data class LlvmCovReportSummary(
val lines: LlvmCovReportStatistics,
val functions: LlvmCovReportStatistics,
val instantiations: LlvmCovReportStatistics,
val regions: LlvmCovReportStatistics
@Expose val lines: LlvmCovReportStatistics,
@Expose val functions: LlvmCovReportStatistics,
@Expose val instantiations: LlvmCovReportStatistics,
@Expose val regions: LlvmCovReportStatistics
)