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

testGetDataThrowsExceptionWhenConfigPathNotFoundInAScalar() public method

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