Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / Regression / GitHub / 1149 / Issue1149Test.php
1 <?php
2 class Issue1149Test extends PHPUnit_Framework_TestCase
3 {
4     public function testOne()
5     {
6         $this->assertTrue(true);
7         print '1';
8     }
9
10     /**
11      * @runInSeparateProcess
12      */
13     public function testTwo()
14     {
15         $this->assertTrue(true);
16         print '2';
17     }
18 }