You are here

Issue445Test.php in Zircon Profile 8

File

vendor/phpunit/phpunit/tests/Regression/GitHub/445/Issue445Test.php
View source
<?php

class Issue445Test extends PHPUnit_Framework_TestCase {
  public function testOutputWithExpectationBefore() {
    $this
      ->expectOutputString('test');
    print 'test';
  }
  public function testOutputWithExpectationAfter() {
    print 'test';
    $this
      ->expectOutputString('test');
  }
  public function testNotMatchingOutput() {
    print 'bar';
    $this
      ->expectOutputString('foo');
  }

}

Classes

Namesort descending Description
Issue445Test