Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DSaveImageInBackgroundTaskTest.kt49 private val testBitmap = mock<Bitmap>() constant
97 eq(testBitmap), in setup()
109 eq(testBitmap), in setup()
133 saveImageTask.queryQuickShareAction(testScreenshotId, testBitmap, testUser, testUri) in testQueryQuickShare_noAction()
155 saveImageTask.queryQuickShareAction(testScreenshotId, testBitmap, testUser, testUri)!! in testQueryQuickShare_withActions()
169 testBitmap, in testCreateQuickShareAction_originalWasNull_returnsNull()
198 testBitmap, in testCreateQuickShareAction_immutableIntentDifferentAction_returnsNull()
227 testBitmap, in testCreateQuickShareAction_mutableIntent_returnsSafeIntent()
262 testBitmap, in testCreateQuickShareAction_immutableIntent_returnsSafeIntent()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/clipboardoverlay/
DClipboardModelTest.kt92 val testBitmap = Bitmap.createBitmap(50, 50, Bitmap.Config.ARGB_8888) in test_imageClipData() constant
95 whenever(mMockContentResolver.loadThumbnail(any(), any(), any())).thenReturn(testBitmap) in test_imageClipData()
101 assertEquals(testBitmap, model.loadThumbnail(mMockContext)) in test_imageClipData()
/frameworks/base/media/tests/MtpTests/src/android/mtp/
DMtpDatabaseTest.java223 Bitmap testBitmap = decodeBitmapFromBytes(byteArray, 4); in testThumbnail() local
224 assertBitmapSize(32, 16, testBitmap); in testThumbnail()