|
|
|
|
|
by owleysagen
3066 days ago
|
|
I've found UI testing to be very brittle esp on Android but that probably also applies to other platforms, UI tests are hard work to maintain when the designs change in small ways - it's so easy to get false negatives. We try and mitigate that a little by trying to get as much of our code out of the view layer as possible so that nearly everything can be unit tested. What's left should (almost) not need testing - we still run some high level espresso tests, but it's not part of our CI at the moment, so not ideal |
|