1

我已经编写了一些测试用例,并想用 PHPUnit 进行尝试。但是,它不起作用。如果我运行phpunit CategoryTest它输出:

PHPUnit 3.7.14 by Sebastian Bergmann.

如果我这样做phpunit --log-json error.log CategoryTest,error.log 文件将显示:

{"event":"suiteStart","suite":"CategoryTest","tests":5}  
{"event":"testStart","suite":"CategoryTest","test":"CategoryTest::test__construct"}

因此,它发现文件中有 5 个测试,开始执行第一个测试,并且无缘无故停止。是否有任何日志可以找到它无法继续执行的原因?此外,如果我在其他文件上运行测试,例如phpunit --log-json error.log UserTest,shell 不会显示任何输出,error.log 文件也不会显示。

我尝试重新安装它,正如其他类似问题之一中所建议的那样,但它没有做任何事情。

有什么想法可以解决吗?

require_once '../Category.class.php';
require_once '../../db_connect.php';
require_once 'PHPUnit/Framework/TestCase.php';

class CategoryTest extends PHPUnit_Framework_TestCase {

private $Category;

protected function setUp() {

    parent::setUp ();
    $this->Category = new Category(0, $mdb2);

}

protected function tearDown() {
    $this->Category = null;
    parent::tearDown ();
}

public function __construct() {

}

public function test__construct() {

    $this->markTestIncomplete ( "__construct test not implemented" );

    $cat = $this->Category->__construct(0, $mdb2);

    $this->assertInstanceOf('Category', $cat);
}

public function testReturnID() {

    $this->markTestIncomplete ( "returnID test not implemented" );

    $id = $this->Category->returnID();

    $this->assertEquals(0, $id);

}
  ...
}

变量$mdb2来自 db_connect.php 文件。

我想到了。问题是我包含了一个类外部的变量。

4

1 回答 1

1

您不应该在您的 TestCase 中覆盖 __construct() 方法。构造函数为测试设置了模拟生成器和其他一些强制性的东西,所以如果你覆盖构造函数,你会得到很多奇怪的行为和不需要的副作用。setUp() 方法是您应该用来初始化测试的特殊方法。

于 2013-02-24T11:27:10.227 回答