Coverage Summary for Class: ClickTrackWithSpecificId (com.vsevolodganin.clicktrack.model)
| Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| ClickTrackWithSpecificId |
0%
(0/1)
|
0%
(0/2)
|
0%
(0/3)
|
0%
(0/63)
|
| ClickTrackWithSpecificId$Companion |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/7)
|
| Total |
0%
(0/2)
|
0%
(0/2)
|
0%
(0/4)
|
0%
(0/70)
|
package com.vsevolodganin.clicktrack.model
import kotlinx.serialization.Serializable
@Serializable
data class ClickTrackWithSpecificId<Id : ClickTrackId>(
val id: Id,
val value: ClickTrack,
)
typealias ClickTrackWithId = ClickTrackWithSpecificId<*>
typealias ClickTrackWithDatabaseId = ClickTrackWithSpecificId<ClickTrackId.Database>