作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我们当前的框架中,我们有一个扩展 ActivityInstrumentationTestCase2 | 的基类。安卓开发者。通常,当我们编写测试用例类时,我们会继承这个基类(我们称之为 FooBase)并编写我们的方法。正如您想象的那样,它变得非常大,我想重构它,以便我们正在测试的功能的每个区域都在其自己的类中,以便我们可以重用它。希望我的模糊类足够准确目标只是能够将方法分成不同的类并从我的测试用例中调用它们
public class FooBase extends ActivityInstrumentionTestCase2 {
@Override
public void runTestOnUiThread(Runnable runnable) {
try {
super.runTestOnUiThread(runnable);
} catch (InterruptedException e) {
throw RuntimeInterruptedException.rethrow(e);
} catch (RuntimeException e) {
throw e;
} catch (Error e) {
throw e;
} catch (Throwable e) {
throw new RuntimeException(e);
}
}
}
我们的测试将是例如
public class TestFooBase extends FooBase{
public void testfeature(){
//execute a method that uses super.runTestOnUiThread()
}
}
我是如何尝试重构它的
public class FooHelper extends FooBase{
public FooHelper(Activity activity){
setActivity(activity)
}
public void sameMethod(){
//moved the method in FooBase to this class that uses the runTestOnUiThread
}
}
我的新测试用例看起来像这样
public class TestFooBase extends FooBase{
FooHelper fooHelper;
public void setup(){
fooHelper = new FooHelper(getActivity);
}
public void testfeature(){
//execute a method that uses super.runTestOnUiThread()
fooHelper.callthemethod()
}
}
当我执行这个时,我在 super.runTestOnUIThread 上得到一个空指针。
最佳答案
您可以传入整个测试类并为其设置构造函数。
public class BaseTestCase {
private Instrumentation instrumentation;
private InstrumentationTestCase instrumentationTestCase;
public BaseTestCase(InstrumentationTestCase testClass, Instrumentation instrumentation){
this.instrumentationTestCase = testClass;
this.instrumentation = instrumentation;
}
public Activity getCurrentActivity() {
try {
instrumentationTestCase.runTestOnUiThread(new Runnable() {
@Override
public void run() {
//Code
}
});
} catch (Throwable throwable) {
throwable.printStackTrace();
}
return activity;
}
要使用,你要在setUp方法上实例化BaseTestCase类
public class ActivityTest extends ActivityInstrumentationTestCase2<TestActivity.class>{
private BaseTestCase baseTestCase;
@Override
public void setUp() throws Exception {
super.setUp();
getActivity();
baseTestCase = new BaseTestCase(this, getInstrumentation());
}
}
并访问您的 BaseTestCase 中的公共(public)方法
public void testRun(){
baseTestCase.getCurrentActivity();
}
关于android - 从不同的类运行 runTestOnUiThread,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25254626/
在我们当前的框架中,我们有一个扩展 ActivityInstrumentationTestCase2 | 的基类。安卓开发者。通常,当我们编写测试用例类时,我们会继承这个基类(我们称之为 FooBas
我是一名优秀的程序员,十分优秀!