ServiceTestCase未启动我的服务

时间:2012-01-20 15:51:57

标签: android unit-testing testing junit servicetestcase

我正在尝试为我的android应用程序编写一些JUnit测试。该应用程序是一项服务。

我已经尝试了几件事来让ServiceTestCase启动服务,但它失败了。

但是,当我调试ServiceTestCase时,它将启动该服务。我相信这是因为ServiceTestCase正在调用setup而没有给它足够的时间让服务在它杀死之前启动......

我不完全确定,这是我第一次使用junit测试android。非常新的。我可以采取哪些措施来解决这个问题?

我正在考虑创建一些计时器循环或其他东西,但这似乎真的很脏。想要更清洁的方法。


Android Manifest for the service.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="dataservice.server"
    <uses-sdk android:minSdkVersion="10" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <service android:name="dataservice.server.DataServer"  android:process=":remote" android:exported="true" android:enabled="true">
            <intent-filter>
                <action android:name="dataservice.DataService.BIND.1" />
            </intent-filter>
            <intent-filter>
                <action android:name= ".DataServer" />
            </intent-filter>
        </service>
        <receiver android:name="dataservice.server.Receiver">
            <intent-filter>
                <action android:name="android.intent.action.USER_PRESENT"></action>
                <action android:name="android.intent.action.BOOT_COMPLETED"></action>
            </intent-filter>
        </receiver>
    </application>
</manifest>

The ServiceTestCase i am attempting.
public class Publish extends ServiceTestCase<DataServer> {

    private final static String TAG = "Publish Unit Test";
    private Context mSystemContext;

    public Publish() {
        super(DataServer.class);
    }

    public Publish(Class<DataServer> serviceClass) {
        super(serviceClass);
    }

    @Override
    protected void setUp() throws Exception {
        // TODO Auto-generated method stub
        super.setUp();
                // this is where i am attempting to start the service.
                // i have attempted other methods, but none of those worked either.
                startService(new Intent(this.getContext(), DataServer.class));
    }

    public void testPublish() {
      }
}

1 个答案:

答案 0 :(得分:0)

我错误地引用了一个依赖项目。一旦修复,它就解决了这个问题。因此,如果您遇到同样的问题,请检查并确保正确引用您的项目。