我使用robolectric和gradle-android-test-plugin进行设置单元测试。我可以毫无问题地运行测试,但我尝试使用JSONOBJECT它失败了“java.lang.RuntimeException:Stub!at org.json.JSONObject。(JSONObject.java:7)”错误。
这是我的build.gradle文件
buildscript {
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
classpath 'com.squareup.gradle:gradle-android-test-plugin:0.9.1-SNAPSHOT'
}
}
apply plugin: 'android'
apply plugin: 'android-test'
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
android {
compileSdkVersion 19
buildToolsVersion '19.0.0'
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
sourceSets {
instrumentTest.setRoot('src/test')
}
}
dependencies {
compile 'com.android.support:support-v4:+'
compile files('libs/org.eclipse.paho.client.mqttv3.jar')
compile files('libs/volley.jar')
testCompile 'junit:junit:4.10'
testCompile 'org.robolectric:robolectric:2.3-SNAPSHOT'
testCompile 'com.squareup:fest-android:1.0.+'
instrumentTestCompile 'junit:junit:4.10'
instrumentTestCompile 'org.robolectric:robolectric:2.3-SNAPSHOT'
instrumentTestCompile 'com.squareup:fest-android:1.0.+'
}
我的java代码:
import org.json.JSONException;
import org.json.JSONObject;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.annotation.Config;
import com.example.RobolectricGradleTestRunner;
@Config(emulateSdk = 18)
@RunWith(RobolectricGradleTestRunner.class)
public class VisitorChatTest {
JSONObject obj;
@BeforeClass
public void jsonTest() throws JSONException{
obj = new JSONObject("{ \"hello\" : \"test\"} ");
}
@Test
public void test() throws JSONException{
assertEquals(obj.getString("hello"), "test");
}
}
编辑:发现错误!
而不是在@BeforeClass中实例化JSONObject,而是在@Before
中实例化它import org.json.JSONException;
import org.json.JSONObject;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.annotation.Config;
import com.example.RobolectricGradleTestRunner;
@Config(emulateSdk = 18)
@RunWith(RobolectricGradleTestRunner.class)
public class VisitorChatTest {
JSONObject obj;
@Before
public void jsonTest() throws JSONException{
obj = new JSONObject("{ \"hello\" : \"test\"} ");
}
@Test
public void test() throws JSONException{
assertEquals(obj.getString("hello"), "test");
}
}
未为@BeforeClass块设置类路径
答案 0 :(得分:0)
在方法中使用@BeforeClass注释使得此方法仅访问静态方法和变量。要制作第一个代码,必须使obj静态。这就是为什么你得到错误并将注释改为@Before工作正常。