public function Framework_AssertTest::testAssertNotTagContentAttributes

@covers PHPUnit_Framework_Assert::assertNotTag @expectedException PHPUnit_Framework_AssertionFailedError

File

drupal/core/vendor/phpunit/phpunit/Tests/Framework/AssertTest.php, line 3304

Class

Framework_AssertTest
@package PHPUnit @author Sebastian Bergmann <sebastian@phpunit.de> @author Bernhard Schussek <bschussek@2bepublished.at> @copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de> @license …

Code

public function testAssertNotTagContentAttributes() {
  $matcher = array(
    'tag' => 'div',
    'content' => 'Test Id Text',
    'attributes' => array(
      'id' => 'test_id',
      'class' => 'my_test_class',
    ),
  );
  $this
    ->assertNotTag($matcher, $this->html);
}