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

testGetDataThrowsExceptionWhenConfigPathNotFoundInAnArray() public method

    public function testGetDataThrowsExceptionWhenConfigPathNotFoundInAnArray()
    {
        // ----------------------------------------------------------------
        // setup your test
        $obj = new WrappedConfig();
        $obj->loadConfigFromFile(__DIR__ . "/wrapped-config-2.json");
        // ----------------------------------------------------------------
        // perform the change
        $actual = $obj->getData("storyplayer.roles.1");
    }
WrappedConfigTest