public function Framework_AssertTest::testAssertSplObjectStorageNotContainsObject

@covers PHPUnit_Framework_Assert::assertNotContains

File

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

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 testAssertSplObjectStorageNotContainsObject() {
  $a = new stdClass();
  $b = new stdClass();
  $c = new SplObjectStorage();
  $c
    ->attach($a);
  $this
    ->assertNotContains($b, $c);
  try {
    $this
      ->assertNotContains($a, $c);
  } catch (PHPUnit_Framework_AssertionFailedError $e) {
    return;
  }
  $this
    ->fail();
}