Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / platforms / android-25 / templates / java_tests_file.template
blob08d6f9b5de4bf844270721e4ab32ecdad9f93d9c
1 package PACKAGE;
3 import android.test.ActivityInstrumentationTestCase2;
5 /**
6  * This is a simple framework for a test of an Application.  See
7  * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on
8  * how to write and extend Application tests.
9  * <p/>
10  * To run this test, you can type:
11  * adb shell am instrument -w \
12  * -e class ACTIVITY_FQ_NAME \
13  * PACKAGE.tests/android.test.InstrumentationTestRunner
14  */
15 public class ACTIVITY_CLASS_NAME extends ActivityInstrumentationTestCase2<ACTIVITY_TESTED_CLASS_NAME> {
17     public ACTIVITY_CLASS_NAME() {
18         super("PACKAGE", ACTIVITY_TESTED_CLASS_NAME.class);
19     }