Initial commit

This commit is contained in:
Impyy 2016-08-15 21:29:41 +02:00
commit c0219fbc35
39 changed files with 1744 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package me.impy.aegis;
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);
}
}