You are here

function assertClassNotHasAttribute in Zircon Profile 8

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

Asserts that a class does not have a specified attribute.

@since Method available since Release 3.1.0

Parameters

string $attributeName:

string $className:

string $message:

File

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

Code

function assertClassNotHasAttribute($attributeName, $className, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertClassNotHasAttribute', func_get_args());
}