Unit Testing in Android? [closed]
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am using Android Studio 1.2 Say I have a simple method add in some class MyAdder public int add(int a,int b) { return a+b; } I want to perform the unit test and use assertions to perform the test for the above-mentioned code. I found it tough, to begin with, Testing Fundamentals from the official DEV site so a