Coverage Summary for Class: BenchResult (com.ghost.serialization.integration.model)
| Class | Method, % | Branch, % | Line, % | Instruction, % |
|---|---|---|---|---|
| BenchResult | 0% (0/2) | 0% (0/8) | 0% (0/4) | 0% (0/77) |
| BenchResult$Companion | 0% (0/1) | 0% (0/1) | 0% (0/2) | |
| Total | 0% (0/3) | 0% (0/8) | 0% (0/5) | 0% (0/79) |
package com.ghost.serialization.integration.model
import kotlinx.serialization.Serializable
@Serializable
data class BenchResult(
val nanos: Long,
val allocBytes: Long,
val stdevNanos: Long = 0L
)