php单元测试工具
//composer.json
"require-dev":{
"phpunit/phpunit": "^5.4"
}
class MyPHPClassTest extends \PHPUnit_Framework_TestCase{//class must end with Test and extend class PHPUnit_Framework_TestCase
public function testMethod()//method must start with test
{
$this->assertTrue(True);
}
}
posted on 2017-02-14 13:59 darkness_1 阅读(118) 评论(0) 收藏 举报
浙公网安备 33010602011771号