Coverage Summary for Class: NoteEvent (com.vsevolodganin.clicktrack.model)
Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
NoteEvent |
0%
(0/2)
|
0%
(0/2)
|
0%
(0/2)
|
0%
(0/66)
|
NoteEvent$Companion |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/2)
|
NoteEvent$Type |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/18)
|
Total |
0%
(0/4)
|
0%
(0/2)
|
0%
(0/4)
|
0%
(0/86)
|
package com.vsevolodganin.clicktrack.model
import com.vsevolodganin.clicktrack.utils.math.Rational
import kotlinx.serialization.Serializable
@Serializable
data class NoteEvent(val length: Rational, val type: Type) {
enum class Type { REST, NOTE }
}