3

使用下面的代码,测试不会按我想要的顺序执行。test_homescreen 在 test_splashscreen 之前执行。

我想指定要运行的测试及其执行顺序。我相信我需要创建一个测试套件,但我不知道如何实现它。

package com.myapp.test;
import com.jayway.android.robotium.solo.Solo;
import android.test.ActivityInstrumentationTestCase2;
import com.myapp.R;

public class myTest extends ActivityInstrumentationTestCase2{

    private static final String TARGET_PACKAGE_ID="com.myapp.test";
    private static final String LAUNCHER_ACTIVITY_FULL_CLASSNAME="com.myapp.gui.SplashScreen";
    private static Class launcherActivityClass;
    static{
        try
        {
            launcherActivityClass=Class.forName(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
        } catch (ClassNotFoundException e){
            throw new RuntimeException(e);
        }
    }
    public myTest ()throws ClassNotFoundException{
        super(TARGET_PACKAGE_ID,launcherActivityClass);
    }
    private Solo solo;

    @Override
    protected void setUp() throws Exception{
        solo = new Solo(getInstrumentation(),getActivity());
    }

    public void test_splashscreen() throws InterruptedException {
        TextView splashAppVersion = (TextView) solo.getView(R.id.AppVersion); 
        assertTrue(splashAppVersion.isShown());     
    }

    public void test_homescreen() throws InterruptedException {
        ListView lv = (ListView) solo.getView(R.id.List);
        assertTrue(lv.isShown());
        }   

    @Override
    public void tearDown() throws Exception {
        try { 
            solo.finishOpenedActivities();    
        } catch (Throwable e) { 
            e.printStackTrace(); 
        }       
        super.tearDown(); 
    }       
}
  1. 先执行 test_splashscreen(),然后执行 test_homescreen()

  2. 只执行 test_homescreen()

这篇文章似乎与我想要的很接近,但我无法使用它。太笼统了。Android Robotium - 如何管理测试用例的执行顺序?

4

3 回答 3

3

正如我们所知,robotium 按字母顺序运行测试用例。因此,为了获得更好的结果,我们可以为单独的活动设置单独的测试用例。稍后与该活动相关的其他测试用例可以保存在同一个包中(为单独的活动保留单独的包)。这将有助于一起运行相同活动的测试用例。要更改测试顺序,您可以在命名测试用例时始终使用字母。例如:“testAddSplash”将在“testHomeScreen”之前运行。

您还可以使用suite()方法:

public static final Test suite()
{ 
                TestSuite testSuite = new TestSuite(); 
                testSuite.addTest(new MyTestCase("test1")); 
                testSuite.addTest(new MyTestCase("test2")); 
                return testSuite; 
} 

您的测试用例必须有一个无参数构造函数和一个带有字符串参数的构造函数,如下所示。

public MyTestCase(String name)
{ 
            setName(name); 
} 
于 2012-10-31T12:45:29.767 回答
1

首先,依赖以特定顺序运行的测试是不好的。如果他们需要一个接一个地运行,您应该问自己为什么要单独进行测试?如果他们依赖之前的测试状态,之前测试中的任何失败都会导致下一个测试失败。

话虽如此,您可能会说我不在乎,我只是想让它起作用。所以对于你,无论如何我都会给你答案。您当然可以像其他人所说的那样做,并将您的测试重命名为按字母顺序运行。但是您似乎想要更多级别的控制,所以这里是:

import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests {
    public static Test suite() {
        TestSuite suite = new TestSuite(AllTests.class.getName());
        suite.addTest(TestSuite.createTest(myTest.class, "test_splashscreen"));
        suite.addTest(TestSuite.createTest(myTest.class, "test_homescreen"));
        suite.addTest(TestSuite.createTest(myTest.class, "test_splashscreen"));
        return suite;
    }
}

这有很多问题,因为您必须将测试名称作为字符串提供,因此如果您重构测试名称,您的套件将会中断(以及许多其他原因)。通常,测试套件更多地用于在一次运行中将测试类分组在一起。

于 2012-11-01T18:39:47.747 回答
0

you can name you test cases like this:

public void test1_whatever()....

public void test3_other()...

public void test2_mytest()...

and when you run them the order will be:

test1_whatever()

test2_mytest()

test3_other()

于 2012-11-01T15:33:27.650 回答