Coverage Summary for Class: ProtoAccountId (com.ghost.serialization.integration.model)

Class Method, % Branch, % Line, % Instruction, %
ProtoAccountId 100% (1/1) 100% (1/1) 100% (8/8)
ProtoAccountId$Companion 0% (0/1) 0% (0/1) 0% (0/2)
Total 50% (1/2) 50% (1/2) 80% (8/10)


 package com.ghost.serialization.integration.model
 
 import com.ghost.serialization.annotations.GhostProtoSerialization
 import com.ghost.serialization.annotations.GhostSerialization
 import kotlinx.serialization.Serializable
 
 @JvmInline
 @Serializable
 @GhostSerialization
 value class ProtoAccountId(val value: Long)
 
 @GhostProtoSerialization
 @Serializable
 data class ProtoValueClassCollectionFixture(
     val ids: List<ProtoAccountId>,
     val accounts: Map<String, ProtoAccountId>
 )