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

testCanGetEntryNames() public method

    public function testCanGetEntryNames()
    {
        // ----------------------------------------------------------------
        // setup your test
        $obj = new ConfigList("DataSift\\Storyplayer\\ConfigLib\\StoryplayerConfig", __DIR__ . '/ConfigListTestData1');
        $obj->findConfigs();
        $expected = ['config-1', 'config-2'];
        // ----------------------------------------------------------------
        // perform the change
        $actual = $obj->getEntryNames();
        // ----------------------------------------------------------------
        // test the results
        $this->assertSame($expected, $actual);
    }