fooman / phpunit-assert-bridge
v0.5.2
2018-11-24 23:44 UTC
Requires
- phpunit/phpunit: ~4.1.0 | ~4.8.0 | ~5.5.0 | ~6.5.0
This package is auto-updated.
Last update: 2026-02-25 16:40:45 UTC
README
The aim is to be able to write phpunit assertions for phpunit 6 and then be able to run these for Magento 2.3 and earlier (more accurately their associated phpunit versions).
Install with
composer require fooman/phpunit-assert-bridge --dev
and then instead of \PHPUnit\Framework\Assert or \PHPUnit_Framework_Assert use Fooman\PhpunitAssertBridge\CompatAssert in both cases.
<?php
use Fooman\PhpunitAssertBridge\CompatAssert;
class MyTestCaseAssertion extends extends \Magento\Mtf\Constraint\AbstractConstraint
{
public function processAssert(
...
) {
CompatAssert::assertEquals('expected', $actual);
}
}