Skip to content

Additional functionality for PHPUnit (such as assertions)

License

Notifications You must be signed in to change notification settings

kuria/phpunit-extras

Repository files navigation

PHPUnit extras

Additional functionality for PHPUnit (such as assertions).

https://travis-ci.com/kuria/phpunit-extras.svg?branch=master
  • PHP 7.1+

This trait exposes additional assertion methods to your test case.

<?php

namespace Acme;

use Kuria\PhpUnitExtras\Traits\AssertionTrait;
use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
{
    use AssertionTrait;

    function testFooBar()
    {
        $this->assertEqualIterable([1, 2, 3], new \ArrayObject([1, 2, 3]));
    }
}

Assert that two values have the same type and value, but consider different instances of the same class identical as long as they have identical properties.

If $canonicalizeKeys = TRUE, then array key order is ignored.

Assert that two iterables contain the same values and types in the same order

Types are compared the same way as with the === operator.

Assert that two iterables contain the same values and types in the same order, but consider different instances of the same class identical as long as they have identical properties.

If $canonicalizeKeys = TRUE, then array key order is ignored.

Assert that two iterables contain equal values in any order

Types are compared the same way as with the == operator.

Create the IsLooselyIdentical constraint. See assertLooselyIdentical().

Create the IsIdenticalIterable constraint. See assertSameIterable().

Create the IsLooselyIdenticalIterable constraint. See assertLooselyIdenticalIterable().

Create the IsEqualIterable constraint. See assertEqualIterable().

Mock current time in tests.

Only affects code that uses the kuria/clock component.

<?php

namespace Acme;

use Kuria\PhpUnitExtras\Traits\ClockTrait;
use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
{
    use ClockTrait;

    function testFooBar()
    {
        $this->atTime(1535904500, function () {
            // some code that uses Kuria/Clock/Clock
        });
    }
}

About

Additional functionality for PHPUnit (such as assertions)

Resources

License

Stars

Watchers

Forks

Languages