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( data class LlvmCovReportFunction(
val name: String, @Expose val name: String,
val count: Int, @Expose val count: Int,
val regions: List<List<Int>>, @Expose val regions: List<List<Int>>,
val filenames: List<String> @Expose val filenames: List<String>
) )
data class LlvmCovReportSummary( data class LlvmCovReportSummary(
val lines: LlvmCovReportStatistics, @Expose val lines: LlvmCovReportStatistics,
val functions: LlvmCovReportStatistics, @Expose val functions: LlvmCovReportStatistics,
val instantiations: LlvmCovReportStatistics, @Expose val instantiations: LlvmCovReportStatistics,
val regions: LlvmCovReportStatistics @Expose val regions: LlvmCovReportStatistics
) )