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

testStartsWithEmptyConfig() public method

    public function testStartsWithEmptyConfig()
    {
        // ----------------------------------------------------------------
        // setup the test
        $expected = new BaseObject();
        // ----------------------------------------------------------------
        // perform the change
        $obj = new WrappedConfig();
        // ----------------------------------------------------------------
        // test the results
        $actual = $obj->getConfig();
        $this->assertEquals($expected, $actual);
    }
WrappedConfigTest