Coverage Summary for Class: DetailStreamResponse (com.codandotv.streamplayerapp.feature_detail.data.model)
| Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| DetailStreamResponse |
50%
(1/2)
|
0%
(0/2)
|
87.5%
(7/8)
|
32.7%
(32/98)
|
| DetailStreamResponse$Companion |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/2)
|
| Total |
33.3%
(1/3)
|
0%
(0/2)
|
77.8%
(7/9)
|
32%
(32/100)
|
package com.codandotv.streamplayerapp.feature_detail.data.model
import kotlinx.serialization.Serializable
@Serializable
@Suppress("ConstructorParameterNaming")
data class DetailStreamResponse(
val id : Long,
val title : String,
val overview : String,
val tagline : String,
val backdrop_path : String,
val release_date : String
)