我正在尝试测试我的类InvalidArgumentException但我得到了
测试\ BarTest :: should_receive_parameter缺少参数1 Itdc \ Foo \ Bar :: __ construct(),调用 /mypath/foo/tests/BarTest.php在第10行和第10行 定义
这是我使用的测试(BarTest.php)文件:
<?php namespace Tests;
use Itdc\Foo\Bar;
class BarTest extends \PHPUnit_Framework_TestCase {
/** @test */
public function should_receive_parameter() {
$this->setExpectedException('Exception');
$id = new Bar;
}
}
这是Bar class:
<?php namespace Itdc\Foo;
class Bar {
public function __construct($a) {
// do something
}
}
我曾尝试在注释部分puth setExpectedException,也尝试使用InvalidArgumentException,但没有运气。
任何建议我所做的错误都会受到赞赏。
答案 0 :(得分:3)
如果直接捕获它,可以使用var_dump()异常。
/** @test */
public function shouldThrowException() {
try {
new Foo();
} catch (\Exception $e) {
var_dump($e);
}
}
输出:
class PHPUnit_Framework_Error_Warning#19 (9) {
...
所以这里的源不会触发异常而是错误,PHPUnit会将错误转换为特定的异常。但它不包含在断言中。
尝试使用特定的例外名称:
/** @test */
public function shouldThrowException() {
$this->setExpectedException('PHPUnit_Framework_Error_Warning');
new Foo();
}