blob: 156123db02a97d4df05a230034083c8c02338b3d [file] [log] [blame]
Alexandre Savardb765bb32012-08-29 15:05:31 -04001package com.savoirfairelinux.sflphone;
2
3import android.test.ActivityInstrumentationTestCase2;
4
Alexandre Savardb3feccc2012-08-29 16:26:20 -04005import com.savoirfairelinux.sflphone.client.SFLPhoneHome;
6
Alexandre Savardb765bb32012-08-29 15:05:31 -04007/**
8 * This is a simple framework for a test of an Application. See
9 * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on
10 * how to write and extend Application tests.
11 * <p/>
12 * To run this test, you can type:
13 * adb shell am instrument -w \
14 * -e class com.savoirfairelinux.sflphone.client.SFLPhoneHomeTest \
15 * com.savoirfairelinux.sflphone.tests/android.test.InstrumentationTestRunner
16 */
17public class SFLPhoneHomeTest extends ActivityInstrumentationTestCase2<SFLPhoneHome> {
18
19 public SFLPhoneHomeTest() {
20 super("com.savoirfairelinux.sflphone", SFLPhoneHome.class);
21 }
22
23}