• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.example.TwoLib;
2 
3 import android.test.ActivityInstrumentationTestCase;
4 
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 com.example.TwoLib.TwoLibTest \
13  * com.example.TwoLib.tests/android.test.InstrumentationTestRunner
14  */
15 public class TwoLibTest extends ActivityInstrumentationTestCase<TwoLib> {
16 
TwoLibTest()17     public TwoLibTest() {
18         super("com.example.TwoLib", TwoLib.class);
19     }
20 
21 }
22