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

testCanGetListedConfigType() public method

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