corneltek/phpunit-testmore

There is no license information available for the latest version (1.3.2) of this package.

1.3.2 2017-03-09 16:13 UTC

This package is auto-updated.

Last update: 2024-04-19 18:53:33 UTC


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