function 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 @author Mike Naberezny <mike@maintainable.com> @author Derek DeVries <derek@maintainable.com>

Parameters

array $matcher:

string $actual:

string $message:

boolean $isHtml:

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert/Functions.php, line 1140

Code

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