gpt4 book ai didi

android - Android studio 中的空测试套件运行测试并覆盖

转载 作者:行者123 更新时间:2023-12-02 02:16:07 25 4
gpt4 key购买 nike

我编写了一些测试,并希望使用 IntelliJ 插件获得代码覆盖率!我的测试代码:

public class TestLogin extends ActivityInstrumentationTestCase2<ActivityAccounting> {

private Solo solo;

public TestLogin() {
super(ActivityAccounting.class);
}

@Override
public void setUp() throws Exception {
super.setUp();
solo = new Solo(this.getInstrumentation(), getActivity());
}

@Test
public void testLoginClick() throws Exception {
//Some UI test
}
}

EditConfiguration 中,我添加了一个 Junit 测试:

enter image description here

但是当我运行覆盖范围时,我编写了以下错误代码:

enter image description here

我该怎么办?提前tnx。

最佳答案

如果您在 build.gradle 中配置了所有内容,如下所示:

dependencies {
testCompile 'junit:junit:4.12'
compile 'com.jayway.android.robotium:robotium-solo:5.6.0'
compile 'com.android.support:support-annotations:23.0.0'
//....
//....
}

您只需在测试类中单击鼠标右键并选择“运行”即可运行测试

关于android - Android studio 中的空测试套件运行测试并覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38719110/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com