Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Issue1149Test.php « 1149 « GitHub « Regression « tests « phpunit « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01ac870a01d56594b4bd51b128bc08991b7340bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
class Issue1149Test extends PHPUnit_Framework_TestCase
{
    public function testOne()
    {
        $this->assertTrue(true);
        print '1';
    }

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