herrera-io/phpunit-test-case
最新稳定版本:1.2.1
Composer 安装命令:
composer require herrera-io/phpunit-test-case
包简介
A PHPUnit test case class with additional functionality.
README 文档
README
A PHPUnit test case class and trait with additional functionality.
Summary
The TestCase class and Extras trait provide additional methods for performing basic, repetitive tasks such as:
- creating and deleting temporary files and directories
- calling protected and private methods
- retrieving and setting protected and private properties
NOTE Both
TestCaseandExtrasare identical, except the former being a class and the latter being a trait.
Installation
Add it to your list of Composer dependencies:
$ composer require herrera-io/phpunit-test-case=1.*
Usage
The TestCase class
<?php class MyTestCase extends Herrera\PHPUnit\TestCase { // my tests }
The Extras trait
<?php class MyTestCase extends My\Own\Custom\TestCase { use Herrera\PHPUnit\Extras; // my tests }
NOTE If your test class provides its own
tearDown()method, make sure to call the class's or trait'stearDown()method as well.TestCaseandExtrasuses the tear down process to clean up temporary files and directories.
统计信息
- 总下载量: 5.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 21
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-01-19