Coverage Summary for Class: MixedStructuralModel (com.ghost.serialization.integration.model)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| MixedStructuralModel |
100%
(1/1)
|
100%
(1/1)
|
|
100%
(4/4)
|
100%
(17/17)
|
package com.ghost.serialization.integration.model
import com.ghost.serialization.annotations.GhostFlatten
import com.ghost.serialization.annotations.GhostSerialization
import com.ghost.serialization.annotations.GhostWrap
@GhostSerialization
data class MixedStructuralModel(
val id: Int,
@GhostFlatten("nested.flat")
val flatValue: String,
@GhostWrap("wrapped.nested")
val wrappedValue: String
)