I want to write a unit test for my app. For login or signup pages, it's easy to write tests for validation, error messages etc.
The issue is that I want to write a unit test for a splash screen. (Which is show random logo for 5 seconds and redirect the user to login page)
My question is: What is the test cases or scenarios I should write for this kind of screen?
I found a question which is close to what I want, but with Robolectric. (I don't want Robolectric)
Thanks