定制 devlop/phpunit-exception-assertions 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

devlop/phpunit-exception-assertions

最新稳定版本:1.1.2

Composer 安装命令:

composer require devlop/phpunit-exception-assertions

包简介

PHPUnit assertions for exceptions.

README 文档

README

Latest Stable Version License

PHPUnit Exception Assertions

Trait containing assertions for easier testing of thrown (or not thrown) exceptions.

Installation

composer require --dev devlop/phpunit-exception-assertions

Usage

Include the trait to get access to the assertions.

use Devlop\PHPUnit\ExceptionAssertions;

class YourTest extends TestCase
{
    use ExceptionAssertions;
}

Available Assertions

assertExceptionThrown

Asserts that a specific exception was thrown during the execution of the callback, if the callback finishes without the exception being thrown, the assertion fails.

To check for any exception, use \Throwable::class as first argument since all exceptions inherits from \Throwable.

$this->assertExceptionThrown(\InvalidArgumentException::class, function () : void {
    // code that should throw the expected exception
});

assertExceptionNotThrown

Asserts that a specific exception was not thrown during the execution of the callback, if the specified exception was thrown during execution the assertion fails.

use with caution - this will only assert that a specific exception was not thrown and the assertion will pass for any other exceptions thrown, intentional or accidental. In most cases it is probably better to assertNoExceptionsThrown instead.

$this->assertExceptionNotThrown(\InvalidArgumentException::class, function () : void {
    // code that should not throw the exception
});

assertNoExceptionsThrown

Asserts that no exceptions was thrown during the execution of the callback, if any exceptions was thrown during the execution the assertion fails.

$this->assertNoExceptionsThrown(function () : void {
    // code that should not throw any exceptions
});

统计信息

  • 总下载量: 134
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 4
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-02-22

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固