Mmoreram\PHPFormatter\Tests\Finder\ConfigFinderTest::testFindConfigFileAndFound PHP Method

testFindConfigFileAndFound() public method

Test right load of config file.
    public function testFindConfigFileAndFound()
    {
        $path = dirname(__FILE__) . '/../Mocks/';
        $fileFinder = new ConfigFinder();
        $data = $fileFinder->findConfigFile($path);
        $this->assertEquals($data, ['use-sort' => ['group' => ['Symfony', '_main', 'Mmoreram'], 'group-type' => 'each', 'sort-type' => 'alph', 'sort-direction' => 'desc']]);
    }