You are here

function assertNotTag in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertNotTag()

This assertion is the exact opposite of assertTag().

Rather than asserting that $matcher results in a match, it asserts that $matcher does not match.

@since Method available since Release 3.3.0

Parameters

array $matcher:

string $actual:

string $message:

bool $isHtml:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 1153

Code

function assertNotTag($matcher, $actual, $message = '', $isHtml = true) {
  return call_user_func_array('PHPUnit_Framework_Assert::assertNotTag', func_get_args());
}