php单元测试工具

Posted darkness_1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
    }   
}

  

以上是关于php单元测试工具的主要内容,如果未能解决你的问题,请参考以下文章

单元测试 NPE,当我添加片段自定义转换时

运行/调试你的PHP代码

如何使用程序代码库在 PHP 中编写单元测试?

单元测试不了解 XCTest 期望的异步 UI 代码?

PHP ffmpeg_php测试片段

四则运算单元测试