D | BaseModelUpdateTaskTestCase.java | 1 package com.android.launcher3.model; 63 public LauncherModel model; field in BaseModelUpdateTaskTestCase 80 model = mock(LauncherModel.class); in setUp() 83 when(appState.getModel()).thenReturn(model); in setUp() 84 when(model.getWriter(anyBoolean(), anyBoolean())).thenReturn(modelWriter); in setUp() 85 when(model.getCallback()).thenReturn(callbacks); in setUp() 106 when(model.isModelLoaded()).thenReturn(true); in executeTaskForTest() 110 task.init(appState, model, bgDataModel, allAppsList, mockExecutor); in executeTaskForTest()
|