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

testLoadTestsuiteFilesFromConfig() public method

    public function testLoadTestsuiteFilesFromConfig()
    {
        $options = new Options(array('configuration' => $this->fixture('phpunit-multifile.xml'), 'testsuite' => 'ParaTest Fixtures'));
        $loader = new SuiteLoader($options);
        $loader->load();
        $files = $this->getObjectValue($loader, 'files');
        $expected = 2;
        $this->assertEquals($expected, sizeof($files));
    }