mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2025-02-07 15:06:43 +01:00
13 lines
360 B
Java
13 lines
360 B
Java
|
package gallery.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);
|
||
|
}
|
||
|
}
|