Coverage Summary for Class: EditLabelRouterImpl (com.stslex93.notes.feature.edit_label.navigation.router)
Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
EditLabelRouterImpl |
0%
(0/1)
|
0%
(0/2)
|
|
0%
(0/3)
|
0%
(0/10)
|
package com.stslex93.notes.feature.edit_label.navigation.router
import com.stslex93.notes.core.navigation.model.NavigationScreen
import com.stslex93.notes.core.ui.di.Navigator
import javax.inject.Inject
class EditLabelRouterImpl @Inject constructor(
private val navigator: Navigator
) : EditLabelRouter {
override fun popBackStack() {
navigator.invoke(NavigationScreen.PopBackStack)
}
}