1

junit用来测试我的 android 应用程序。在TestCase1.java我单击“同意”按钮以接受协议,然后断言一些可能性。

接下来TestCase2.java,我想再次单击“同意”按钮并断言一些可能性。

每次运行测试用例时,我都必须卸载应用程序并重新安装它。如果我运行整个程序包,大多数情况下都会失败,因为我在重复相同的路径。

示例代码。
TestCase1.java

  @Test
  public void testdA_Case2() throws Exception {
  solo.assertCurrentActivity("my test  active", Myproj.class);
    solo.clickOnButton("I Agree");
    assertEquals(Getresponce(),"1");
}

TestCase2.java

 @Test
  public void testdA_Case2() throws Exception {
  solo.assertCurrentActivity("my test  active", Myproj.class);  
  solo.clickOnButton("I Agree");
    assertEquals(register(), true);`

如何运行测试,以便应用程序在每个测试用例之前重新安装。如何自动化它。(我尝试清除应用程序数据并尝试使用 Uri 卸载

packageURI = Uri.parse("package:"+"myproj.com");
        Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageURI).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        ctx.startActivity(uninstallIntent);
    `  But my test stops running if I tried this.

提前感谢您的帮助。

4

1 回答 1

1

看起来您无法从测试用例中重新安装您的 apk,因为它们都在应用程序中运行。

但是您可以从外部实现所需的流量控制。

从批处理/shell 脚本中,您可以根据需要调用 adb install -r .... 并运行单独的测试项目。以下是如何运行一个:从命令行运行 Android Junit 测试

于 2012-12-27T06:59:15.750 回答