Created
October 22, 2019 02:35
-
-
Save cdmunoz/0f147894595729310f2c9638f9f0591d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
fun auctionPhotos_CreationCameraClickUI() { | |
val imgCaptureResult = CameraAndGallery.createImageCaptureActivityResultStub(mActivityTestRule.activity) | |
intending(hasAction(MediaStore.ACTION_IMAGE_CAPTURE)).respondWith(imgCaptureResult) | |
auctionPhotos_CreationInitialUI() | |
onView(withId(R.id.auctionphotos_button_camera)).perform(click()) | |
onView(withId(R.id.auctionphotos_bigimage_viewer)).check(matches(hasImageSet())) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment