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

testUnsetDataThrowsExceptionWhenConfigPathNotFoundInAnObject() public method

    public function testUnsetDataThrowsExceptionWhenConfigPathNotFoundInAnObject()
    {
        // ----------------------------------------------------------------
        // setup your test
        $obj = new WrappedConfig();
        $obj->loadConfigFromFile(__DIR__ . "/wrapped-config-2.json");
        // ----------------------------------------------------------------
        // perform the change
        $obj->unsetData("storyplayer.ipAddres");
    }
WrappedConfigTest