5 Beginner Testing Mistakes I Noticed While Working with Less Experienced Developers Having a good test suite helps with catching regressions / bugs a lot faster, and gives developers more confidence when merging / releasing their product. In this series, I'll share my recommendations for improving your tests.
Kotlin Multiplatform Parameterized Tests and Grouping Using The Standard Kotlin Testing Framework Keeping Kotlin Multiplatform tests clean while using the standard kotlin.test framework
Writing UI Tests for Pager Layouts in Jetpack Compose Writing UI tests for pager layouts can be problematic in Compose. In this post, I'll share my experience and solutions when dealing with such screens.
Testing on Kotlin Multiplatform Mobile and a Strategy to Speed Up Development Time Automated tests are an integral part of developing software, they help catch bugs before they reach the users and save developers time by cutting down manual testing.
Using Ktor Client MockEngine for Integration and UI Tests MockEngine replaces real network calls with mocked ones that use pre-defined data and status codes. The engine can be shared between Integration and UI tests.