FastFeed\Tests\FastFeedSetterTest::testPopProcessor PHP Méthode

testPopProcessor() public méthode

public testPopProcessor ( )
    public function testPopProcessor()
    {
        $processorMock = $this->getMock('FastFeed\\Processor\\ProcessorInterface');
        $this->fastFeed->pushProcessor($processorMock);
        $this->assertInstanceOf('FastFeed\\Processor\\ProcessorInterface', $this->fastFeed->popProcessor());
    }