1<?php
2class 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}
19