ParaTest\Runners\PHPUnit\SuiteLoaderTest::testLoadTestsuiteWithFilesDirsMixed PHP Method

testLoadTestsuiteWithFilesDirsMixed() public method

    public function testLoadTestsuiteWithFilesDirsMixed()
    {
        $options = new Options(array('configuration' => $this->fixture('phpunit-files-dirs-mix.xml'), 'testsuite' => 'ParaTest Fixtures'));
        $loader = new SuiteLoader($options);
        $loader->load();
        $files = $this->getObjectValue($loader, 'files');
        $expected = sizeof($this->findTests(FIXTURES . DS . 'failing-tests')) + 2;
        $this->assertEquals($expected, sizeof($files));
    }