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

testRemembersConfigType() public method

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