public function Framework_AssertTest::testAssertIteratorContainsString

@covers PHPUnit_Framework_Assert::assertContains

File

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

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 testAssertIteratorContainsString() {
  $this
    ->assertContains('foo', new TestIterator(array(
    'foo',
  )));
  try {
    $this
      ->assertContains('foo', new TestIterator(array(
      'bar',
    )));
  } catch (PHPUnit_Framework_AssertionFailedError $e) {
    return;
  }
  $this
    ->fail();
}