The Compose testing cheat sheet is a quick reference of some of the most useful Compose test APIs. The cheat sheet is also[downloadable in PDF format](https://developer.android.com/static/develop/ui/compose/images/compose-testing-cheatsheet.pdf).

[![Useful Compose testing APIs](https://developer.android.com/static/develop/ui/compose/images/compose-testing-cheatsheet.png)](https://developer.android.com/static/develop/ui/compose/images/compose-testing-cheatsheet.png)

## Additional Resources

- **[Test apps on Android](https://developer.android.com/training/testing)**: The main Android testing landing page provides a broader view of testing fundamentals and techniques.
- **[Fundamentals of testing](https://developer.android.com/training/testing/fundamentals):**Learn more about the core concepts behind testing an Android app.
- **[Local tests](https://developer.android.com/training/testing/local-tests):**You can run some tests locally, on your own workstation.
- **[Instrumented tests](https://developer.android.com/training/testing/instrumented-tests):**It is good practice to also run instrumented tests. That is, tests that run directly on-device.
- **[Continuous integration](https://developer.android.com/training/testing/continuous-integration):**Continuous integration lets you integrate your tests into your deployment pipeline.
- **[Test different screen sizes](https://developer.android.com/training/testing/different-screens):**With some many devices available to users, you should test for different screen sizes.
- **[Espresso](https://developer.android.com/training/testing/espresso)**: While intended for View-based UIs, Espresso knowledge can still be helpful for some aspects of Compose testing.