DataSift\Storyplayer\ConfigLib\HardCodedListTest::testCanAddedConfigsMustBeCompatibleType PHP Méthode

testCanAddedConfigsMustBeCompatibleType() public méthode

    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);
    }