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

testStartsWithNoName() public method

    public function testStartsWithNoName()
    {
        // ----------------------------------------------------------------
        // setup the test
        $expected = WrappedConfig::NO_NAME;
        // ----------------------------------------------------------------
        // perform the change
        $obj = new WrappedConfig();
        // ----------------------------------------------------------------
        // test the results
        $actual = $obj->getName();
        $this->assertEquals($expected, $actual);
    }
WrappedConfigTest