Android Development Tutorial-Android unit testing
Android Development Tutorial-Android unit testing
Mon, 07/19/2010 – 06:51 | by gabor
M3
For unit testing you can use the built in JUnit framework just like in “standard” java applications.
A unit test is to test some low-level part – usually a single class – of a project, working individually.
The only trick is to extend AndroidTestCase in your test case instead of TestCase some Android specific methods, like getContext() which is often required by android functions.
Lets see a very simple example using eclipse:
- Create a new project to test, create a new class in it, with a simple method that , like this:
-
public class ClassToTest{
-
public int add(int arg1,int arg2){
-
return arg1+arg2;
-
}
-
}
- Create a new test project: File/new/Other…/Android/Android Test Project
Add the previously created project as the test target, the other fields can be left as they are auto filled.
This Android Tutorial has been taken from Hello Android Tutorial