码迷,mamicode.com
首页 > Web开发 > 详细

php单元测试工具

时间:2017-02-14 15:05:30      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:method   frame   public   and   sse   blog   tar   单元测试工具   logs   

//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);
    }   
}

  

php单元测试工具

标签:method   frame   public   and   sse   blog   tar   单元测试工具   logs   

原文地址:http://www.cnblogs.com/flytome/p/6397326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!