You are here

Issue1149Test.php in Zircon Profile 8

File

vendor/phpunit/phpunit/tests/Regression/GitHub/1149/Issue1149Test.php
View source
<?php

class Issue1149Test extends PHPUnit_Framework_TestCase {
  public function testOne() {
    $this
      ->assertTrue(true);
    print '1';
  }

  /**
   * @runInSeparateProcess
   */
  public function testTwo() {
    $this
      ->assertTrue(true);
    print '2';
  }

}

Classes

Namesort descending Description
Issue1149Test