微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

详解Yaf框架PHPUnit集成测试方法

本文介绍了详解Yaf框架PHPUnit集成测试方法分享给大家,具体如下:

测试目录

rush:plain;"> test ├── TestCase.PHP ├── bootstrap.PHP ├── controller │ ├── BaseControllerTest.PHP │ └── IndexControllerTest.PHP ├── model ├── PHPunit.xml └── service └── TokenServiceTest.PHP

PHPunit.xml

rush:xml;"> <PHPunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.PHPunit.de/6.2/PHPunit.xsd" extensionsDirectory="dbunit.phar" bootstrap="./bootstrap.PHP">

bootstrap.PHP 测试框架入口文件

rush:PHP;"> define("APP_PATH",realpath(dirname(__FILE__) . '/../')); date_default_timezone_set("Asia/Shanghai"); define("TEST_DIR",__DIR__);

TestCase.PHP 测试文件基础类

getApplication(); parent::setUp(); }

public function testAppPath()
{
$this->assertEquals('/Users/xiong/Sites/kyYaf',APP_PATH);
}

public function testApp()
{
$this->assertEquals(Application::app(),self::$_application);
}

public function testApplication()
{
$this->assertNotNull(self::$_application);
}

public function getApplication()
{
if (self::$_application == null) {
$this->setApplication();
}
return self::$_application;
}

public function setApplication()
{
$application = new Application(APP_PATH . '/conf/application.ini');
$application->bootstrap();
self::$_application = $application;
}
}

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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐