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

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

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