DataSift\Storyplayer\PlayerLib\Story_LoaderTest::testReturnsStoryLoadedFromFile PHP Method

testReturnsStoryLoadedFromFile() public method

    public function testReturnsStoryLoadedFromFile()
    {
        // ----------------------------------------------------------------
        // setup the test
        $filename = __DIR__ . '/test-stories/BasicStory.php';
        // ----------------------------------------------------------------
        // perform the change
        $obj = Story_Loader::loadStory($filename);
        // ----------------------------------------------------------------
        // test the results
        $this->assertTrue($obj instanceof Story);
    }