Coverage Summary for Class: ClientDetails (com.imecatro.demosales.navigation.clients)
| Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| ClientDetails |
0%
(0/2)
|
0%
(0/2)
|
0%
(0/2)
|
0%
(0/28)
|
| ClientDetails$Companion |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/2)
|
| Total |
0%
(0/3)
|
0%
(0/2)
|
0%
(0/3)
|
0%
(0/30)
|
package com.imecatro.demosales.navigation.clients
import kotlinx.serialization.Serializable
/**
* Defines the navigation destinations for the Clients feature.
*/
@Serializable
object ClientsList
/** Destination for adding a new client. */
@Serializable
object AddClient
/**
* Destination for editing an existing client.
* @property id The ID of the client to edit.
*/
@Serializable
data class EditClient(val id: Long)
/**
* Destination for viewing client details.
* @property id The ID of the client to view.
*/
@Serializable
data class ClientDetails(val id: Long)