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  阅读(114)  评论(0编辑  收藏  举报

导航