mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2025-12-31 11:07:51 -05:00
15 lines
354 B
Java
15 lines
354 B
Java
package protect.card_locker;
|
|
|
|
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);
|
|
}
|
|
} |