package com.fiteclub.android.activity; /* <!-- Copyright (C) 2008 http://mobeegal.in All Rights Reserved. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> */ /* <!-- $Id:: $: Id of last commit $Rev:: $: Revision of last commit $Author:: $: Author of last commit $Date:: $: Date of last commit --> */ import android.test.ActivityInstrumentationTestCase; /** * 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 com.fiteclub.android.FiteClubApplicationTest \ * com.fiteclub.android.tests/android.test.InstrumentationTestRunner */ public class AlertInstrumentationTest extends ActivityInstrumentationTestCase<Alert> { public AlertInstrumentationTest() { super("com.fiteclub.android", Alert.class); } }