My android tests don't get internet access!

Posted by Malachii on Stack Overflow See other posts from Stack Overflow or by Malachii
Published on 2010-01-15T19:37:49Z Indexed on 2010/05/14 12:04 UTC
Read the original article Hit count: 270

Filed under:

The subject says it all. My application gets internet access thanks to the android.permission.INTERNET permission, but my test cases don't while using the instrumentation test runner.

This means I can't test my server IO routines in my test cases. What's up?

Here's my manifest in case it helps you. Thanks!

Sorry about the lack of indents - could not get it working on short notice with this site. Thanks!

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.helloandroid" android:versionCode="1" android:versionName="1.0">

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

<application android:icon="@drawable/icon" android:label="@string/app_name">

<uses-library android:name="android.test.runner" />

<activity android:name=".HelloAndroid" android:label="@string/app_name">

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>

</application>

<uses-sdk android:minSdkVersion="2" />
<instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="qnext.mobile.redirect" android:label="Qnext Redirect Tests" />

</manifest> 

© Stack Overflow or respective owner

Related posts about android