Home
last modified time | relevance | path

Searched refs:CustomizationToolStateMachine (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/tests/CustomizationTool/tests/src/com/android/car/customization/tool/domain/
DCustomizationToolStateMachineTest.kt58 val underTest = CustomizationToolStateMachine(mockMenuController, mock()) in when_the_action_toggle_is_received_the_page_state_is_updated()
92 val underTest = CustomizationToolStateMachine(mockMenuController, mock()) in when_a_menu_action_is_received_then_it_is_forwarded_to_the_MenuController()
118 val underTest = CustomizationToolStateMachine(mockMenuController, spyPanelController) in when_a_panel_action_is_received_then_it_is_forwarded_to_the_PanelController()
142 val underTest = CustomizationToolStateMachine(mockMenuController, mock()) in expect_exception_when_action_is_not_implemented_in_the_state_machine()
/packages/services/Car/tests/CustomizationTool/src/com/android/car/customization/tool/
DCustomizationToolService.kt24 import com.android.car.customization.tool.domain.CustomizationToolStateMachine
35 lateinit var customizationToolStateMachine: CustomizationToolStateMachine
/packages/services/Car/tests/CustomizationTool/src/com/android/car/customization/tool/domain/
DCustomizationToolStateMachine.kt37 internal class CustomizationToolStateMachine @Inject constructor( class