DataSift\Storyplayer\CommandLib\SshClientTest::testCanInstantiate PHP Method

testCanInstantiate() public method

public testCanInstantiate ( )
    public function testCanInstantiate()
    {
        // ----------------------------------------------------------------
        // setup your test
        $i = new Injectables();
        $i->initOutputSupport();
        $i->initDataFormatterSupport();
        $i->initRuntimeConfigSupport($i);
        $st = new StoryTeller($i);
        // ----------------------------------------------------------------
        // perform the change
        $obj = new SshClient($st);
        // ----------------------------------------------------------------
        // test the results
        $this->assertTrue($obj instanceof SshClient);
    }