定义并执行测试
最后更新于:2022-04-01 15:10:17
要建立一个测试案例,只要在 tests 文件夹建立新的测试文件。测试类必须继承自 TestCase,接着你可以如你平常使用 PHPUnit 一般去定义测试方法。
测试类例子
~~~
class FooTest extends TestCase {
public function testSomethingIsTrue()
{
$this->assertTrue(true);
}
}
~~~
你可以从终端机执行 phpunit 命令来执行应用程序的所有测试。
> 注意: 如果你定义自己的 setUp 方法, 请记得调用 parent::setUp。