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

testCanInstantiate() public method

public testCanInstantiate ( )
    public function testCanInstantiate()
    {
        // ----------------------------------------------------------------
        // perform the change
        $i = new Injectables();
        $i->dataFormatter = new DataFormatter();
        $i->dataFormatter->setIsVerbose(true);
        $obj = new Action_Logger($i);
        // ----------------------------------------------------------------
        // test the results
        $this->assertTrue($obj instanceof Action_Logger);
    }