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

testCanAddedConfigsMustBeCompatibleType() public method

    public function testCanAddedConfigsMustBeCompatibleType()
    {
        // ----------------------------------------------------------------
        // setup the test
        $expectedName = 'test-config';
        $obj = new HardCodedList('DataSift\\Storyplayer\\ConfigLib\\StoryplayerConfig');
        // ----------------------------------------------------------------
        // perform the change
        $config = new WrappedConfig();
        $config->setName($expectedName);
        $obj->addConfig($config);
    }