DataSift\Storyplayer\ConfigLib\ConfigListTest::testStartsWithGivenSearchFolder PHP Method

testStartsWithGivenSearchFolder() public method

    public function testStartsWithGivenSearchFolder()
    {
        // ----------------------------------------------------------------
        // setup your test
        $expected = __DIR__ . '/ConfigListTestData1';
        // ----------------------------------------------------------------
        // perform the change
        $obj = new ConfigList("DataSift\\Storyplayer\\ConfigLib\\StoryplayerConfig", $expected);
        // ----------------------------------------------------------------
        // test the results
        $actual = $obj->getSearchFolder();
        $this->assertEquals($expected, $actual);
    }