Skip to content

Instantly share code, notes, and snippets.

@paranoiq
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paranoiq/435de52094318d3f78af to your computer and use it in GitHub Desktop.
Save paranoiq/435de52094318d3f78af to your computer and use it in GitHub Desktop.
Tester\Assert with fixed order of parameters
<?php
namespace Dogma\Tester;
/**
* Tester\Assert with fixed order of parameters
*/
class Assert extends \Tester\Assert
{
public static function same($actual, $expected)
{
parent::same($expected, $actual);
}
public static function notSame($actual, $expected)
{
parent::notSame($expected, $actual);
}
public static function equal($actual, $expected)
{
parent::equal($expected, $actual);
}
public static function notEqual($actual, $expected)
{
parent::notEqual($expected, $actual);
}
public static function contains($haystack, $needle)
{
parent::contains($needle, $haystack);
}
public static function notContains($haystack, $needle)
{
parent::notContains($needle, $haystack);
}
public static function count($actualValue, $expectedCount)
{
parent::count($expectedCount, $actualValue);
}
public static function type($actualValue, $expectedType)
{
parent::type($expectedType, $actualValue);
}
public static function match($actualValue, $mask)
{
parent::match($mask, $actualValue);
}
public static function matchFile($actualValue, $file)
{
parent::matchFile($file, $actualValue);
}
public static function fail($message, $actual = null, $expected = null)
{
parent::fail($message, $expected, $actual);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment