Back to project page adventure.datetime.
The source code is released under:
MIT License
If you think the Android project adventure.datetime listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ca.cmput301f13t03.adventure_datetime.view; //from w w w. j av a2s .c o m import android.test.ActivityInstrumentationTestCase2; /** * This is a simple framework for a test of an Application. See {@link android.test.ApplicationTestCase * ApplicationTestCase} for more information on how to write and extend Application tests. * <p/> * To run this test, you can type: adb shell am instrument -w \ -e class ca.cmput301f13t03.adventure_datetime.view.MainViewTest * \ ca.cmput301f13t03.adventure_datetime.tests/android.test.InstrumentationTestRunner */ public class MainViewTest extends ActivityInstrumentationTestCase2<MainView> { public MainViewTest() { super("ca.cmput301f13t03.adventure_datetime", MainView.class); } }