Skip to content

Latest commit

 

History

History
160 lines (105 loc) · 8.58 KB

README.md

File metadata and controls

160 lines (105 loc) · 8.58 KB

Android testing samples

A collection of samples demonstrating different frameworks and techniques for automated testing.

Espresso Samples

BasicSample - Basic Espresso sample

CustomMatcherSample - Shows how to extend Espresso to match the hint property of an EditText

DataAdapterSample - Showcases the onData() entry point for Espresso, for lists and AdapterViews

FragmentScenarioSample - Basic usage of FragmentScenario with Espresso.

IdlingResourceSample - Synchronization with background jobs

IntentsBasicSample - Basic usage of intended() and intending()

IntentsAdvancedSample - Simulates a user fetching a bitmap using the camera

MultiWindowSample - Shows how to point Espresso to different windows

RecyclerViewSample - RecyclerView actions for Espresso

WebBasicSample - Use Espresso-web to interact with WebViews

BasicSampleBundled - Basic sample for Eclipse and other IDEs

MultiProcessSample - Showcases how to use multiprocess Espresso.

UiAutomator Sample

BasicSample - Basic UI Automator sample

AndroidJUnitRunner Sample

AndroidJunitRunnerSample - Showcases test annotations, parameterized tests and testsuite creation

JUnit4 Rules Sample