DEV Community

Discussion on: Running Android Instrumented Tests on CI - from Bitrise.io to GitHub Actions

Collapse
 
ychescale9 profile image
Yang

You mean running those DAO tests as regular unit tests that can be run on the host machine without an emulator / real device?

You could try Robolectric, or look at sqldelight which supports using an in memory Sql driver for unit tests. Here’s an example.
Hope that helps!