DataSift\Storyplayer\ConfigLib\WrappedConfigTest::testCannotSetDataByExtendingAScalar PHP Method

testCannotSetDataByExtendingAScalar() public method

    public function testCannotSetDataByExtendingAScalar()
    {
        // ----------------------------------------------------------------
        // setup your test
        $obj = new WrappedConfig();
        $obj->loadConfigFromFile(__DIR__ . "/wrapped-config-2.json");
        // ----------------------------------------------------------------
        // perform the change
        $obj->setData("storyplayer.ipAddress.cwd", getcwd());
    }
WrappedConfigTest