creating the project

This commit is contained in:
tibbi
2016-02-13 21:05:54 +01:00
parent a56cd1400d
commit 1feb488c4b
25 changed files with 441 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package notes.simplemobiletools.com;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}