详解Yaf框架PHPUnit集成测试方法
本文介绍了详解Yaf框架PHPUnit集成测试方法,分享给大家,具体如下: 测试目录 phpunit.xml bootstrap.php 测试框架入口文件 TestCase.php 测试文件基础类 getApplication(); parent::setUp(); }public function testAppPath() public function testApp() public function testApplication() public function getApplication() public function setApplication() TokenServiceTest.php service类例子 public function testCreateToken() { $token = self::$tokenService->createToken('22'); $this->assertInternalType('array',$token); $this->assertInternalType('string',$token['token']); } } BaseControllerTest.php controller类例子 getDispatcher()->returnResponse(true)->dispatch($request);
$contents = $response->getBody();
$data = json_decode($contents,true);
$this->assertInternalType('array',$data);
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。 (编辑:ASP站长) 【免责声明】本站内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。 |
-
无相关信息