Coverage Summary for Class: DefaultValueNullModel (com.ghost.serialization.integration.model)
| Class | Class, % | Method, % | Branch, % | Line, % | Instruction, % |
|---|---|---|---|---|---|
| DefaultValueNullModel | 100% (1/1) | 100% (1/1) | 100% (2/2) | 100% (15/15) |
package com.ghost.serialization.integration.model
import com.ghost.serialization.annotations.GhostSerialization
@GhostSerialization
data class DefaultValueNullModel(
val name: String = "Default",
val age: Int? = 42
)