定制 corneltek/phpunit-testmore 二次开发

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

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

corneltek/phpunit-testmore

最新稳定版本:1.3.2

Composer 安装命令:

composer require corneltek/phpunit-testmore

包简介

README 文档

README

To let you define Test::More like unit testing and also based on the great PHPUnit framework.

In your phpunit.xml, define the bootstrap script, and require the test helpers:

// In your tests/bootstrap.php
require 'tests/testmore_helpers.php';

In your PHPUnit test case, you can:

class FooTest extends PHPUnit_Framework_TestCase
{
    function test()
    {
        $foo = new Foo;
        ok( $foo );
        ok( $foo , 'message' );
        is( 1, 1 );
        is( 1, 1 , 'message' );
        count_ok( 3 , array( ... ) );
        not_ok( false );
        is_true( true );  // === true
        is_false( false );  // === false

        like( '/pattern/' , 'string' );
    }
}

Output Result

% phpunit 
TAP version 13
ok 1 - FooTest::test
ok 2 - FooTest::test2
ok 3 - FooTest::test3
1..3

Methods

  • ok
  • not_ok
  • is
  • like
  • is_false
  • is_true
  • count_ok

统计信息

  • 总下载量: 22.55k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 9
  • 点击次数: 0
  • 依赖项目数: 37
  • 推荐数: 0

GitHub 信息

  • Stars: 9
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2013-03-21