DataSift\Storyplayer\OutputTest::testCanEndPhaseGroup PHP Метод

testCanEndPhaseGroup() публичный Метод

    public function testCanEndPhaseGroup()
    {
        // ----------------------------------------------------------------
        // setup the test
        $result = new PhaseGroup_Result('testing');
        $plugin1 = Mockery::mock("DataSift\\Storyplayer\\OutputLib\\OutputPlugin");
        $plugin1->shouldReceive('endPhaseGroup')->once()->with($result);
        $plugin2 = Mockery::mock("DataSift\\Storyplayer\\OutputLib\\OutputPlugin");
        $plugin2->shouldReceive('endPhaseGroup')->once()->with($result);
        $obj = new Output();
        $obj->usePluginInSlot($plugin1, "console");
        $obj->usePluginInSlot($plugin2, "slot1");
        // ----------------------------------------------------------------
        // perform the change
        $obj->endPhaseGroup($result);
        // ----------------------------------------------------------------
        // test the results
        Mockery::close();
    }