You are here

Issue1471Test.php in Zircon Profile 8

File

vendor/phpunit/phpunit/tests/Regression/GitHub/1471/Issue1471Test.php
View source
<?php

class Issue1471Test extends PHPUnit_Framework_TestCase {
  public function testFailure() {
    $this
      ->expectOutputString('*');
    print '*';
    $this
      ->assertTrue(false);
  }

}

Classes

Namesort descending Description
Issue1471Test