douxi9245 2012-07-20 17:57
浏览 54
已采纳

为什么我的PHPUnit测试不起作用?

First time using PHPUnit and Selenium. Installed Selenium IDE plugin for Firefox, created some simple tests using the recorder. The IDE formats the tests as HTML tables by default so I installed the PHP formatter addon to the Selenium addon and was able to export the tests as PHPUnit format. Next installed PHPUnit on Windows 7. Also installed the Selenium plugin for PHPUnit.

Then ran my tests using this command:

phpunit Mytests.php

output is:

Time: 0 seconds, Memory: 2.7Mb
OK (0 tests, 0 assertions)

So great no errors, but it doesn't look like the tests have run either. What's wrong? Is it the contents of my test file:

<?php

require_once 'PEAR/PHPUnit/Extensions/SeleniumTestCase.php';

class Mytests extends PHPUnit_Extensions_SeleniumTestCase
{
  protected function setUp()
  {
    $this->setBrowser("*chrome");
    $this->setBrowserUrl("http://www.foobar.com/");
  }

  public function related_videos()
  {
    // // make sure there are 4 related items
    $this->open("/");
    $this->click("xpath=//div[contains(@id, 'featured')]/article/div/a[contains(@class,'thumb')]");
    $this->waitForPageToLoad("30000");
    try {
        $this->assertEquals("4", $this->getXpathCount("//descendant-or-self::*[@id = 'related']/descendant::article"));
    } catch (PHPUnit_Framework_AssertionFailedError $e) {
        array_push($this->verificationErrors, $e->toString());
    }
  }

}
?>
  • 写回答

1条回答 默认 最新

  • dosi8657 2012-07-20 18:04
    关注

    Phpunit is looking for method names starting with "test" on the testcase instances, if you rename the related_videos method to test_related_videos it should find and run it.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵