DataSift\Storyplayer\PlayerLib\Story_ContextTest::testCanInstantiate PHP Method

testCanInstantiate() public method

public testCanInstantiate ( )
    public function testCanInstantiate()
    {
        // ----------------------------------------------------------------
        // perform the change
        $i = new Injectables();
        $obj = new Story_Context($i);
        // ----------------------------------------------------------------
        // test the results
        $this->assertTrue($obj instanceof Story_Context);
    }
Story_ContextTest