DataSift\Storyplayer\ConfigLib\ConfigListTest::testStartsWithEmptyConfig PHP Method

testStartsWithEmptyConfig() public method

    public function testStartsWithEmptyConfig()
    {
        // ----------------------------------------------------------------
        // setup the test
        $expected = [];
        // ----------------------------------------------------------------
        // perform the change
        $obj = new ConfigList("DataSift\\Storyplayer\\ConfigLib\\WrappedConfig", __DIR__ . '/ConfigListTestData1');
        // ----------------------------------------------------------------
        // test the results
        $actual = $obj->getEntries();
        $this->assertEquals($expected, $actual);
    }