Issue
I have a simple test class:
public class SimpleTest extends AndroidTestCase {
public void testSomething() throws Throwable {
Assert.assertEquals(1 + 1, 2);
}
}
I know how to run the test, but where can I view the output in Android Studio?
Solution
Run the test by right clicking on it.
The run tab should pop up, you can open it by hand on the very bottom left corner.
It will list your test results.
Answered By - flx
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.