DataSift\Storyplayer\ConfigLib\HardCodedListTest::testStartsWithEmptyList PHP Method

testStartsWithEmptyList() public method

    public function testStartsWithEmptyList()
    {
        // ----------------------------------------------------------------
        // setup the test
        $expected = [];
        // ----------------------------------------------------------------
        // perform the change
        $obj = new HardCodedList('DataSift\\Storyplayer\\ConfigLib\\WrappedConfig');
        // ----------------------------------------------------------------
        // test the results
        $actual = $obj->getConfigs();
        $this->assertEquals($expected, $actual);
    }