Searched refs:mockTypedArray (Results 1 – 2 of 2) sorted by relevance
41 @Mock private lateinit var mockTypedArray: TypedArray141 res.addOverride(InternalR.array.config_roundedCornerRadiusArray, mockTypedArray)142 res.addOverride(InternalR.array.config_roundedCornerTopRadiusArray, mockTypedArray)143 res.addOverride(InternalR.array.config_roundedCornerBottomRadiusArray, mockTypedArray)144 res.addOverride(SystemUIR.array.config_roundedCornerDrawableArray, mockTypedArray)145 res.addOverride(SystemUIR.array.config_roundedCornerTopDrawableArray, mockTypedArray)146 res.addOverride(SystemUIR.array.config_roundedCornerBottomDrawableArray, mockTypedArray)
106 final TypedArray mockTypedArray = mock(TypedArray.class); in setUp() local107 when(mockTypedArray.length()).thenReturn(1); in setUp()108 when(mResources.obtainTypedArray(anyInt())).thenReturn(mockTypedArray); in setUp()