FastFeed\Tests\Parser\ParserSetterTest::testPopParser PHP Method

testPopParser() public method

public testPopParser ( )
    public function testPopParser()
    {
        $aggregatorMock = $this->getMock('FastFeed\\Aggregator\\AggregatorInterface');
        $this->parser->pushAggregator($aggregatorMock);
        $this->assertInstanceOf('FastFeed\\Aggregator\\AggregatorInterface', $this->parser->popAggregator());
    }