定义并执行测试
2018-02-24 15:52 更新
要建立一个测试案例,只要在 tests 文件夹建立新的测试文件。测试类必须继承自 TestCase,接着你可以如你平常使用 PHPUnit 一般去定义测试方法。
测试类例子
class FooTest extends TestCase {
public function testSomethingIsTrue()
{
$this->assertTrue(true);
}
}
你可以从终端机执行 phpunit 命令来执行应用程序的所有测试。
注意: 如果你定义自己的 setUp 方法, 请记得调用 parent::setUp。
以上内容是否对您有帮助:
← 单元测试
更多建议: