FastFeed\Tests\FastFeedSetterTest::testPopParser PHP Method

testPopParser() public method

public testPopParser ( )
    public function testPopParser()
    {
        $parserMock = $this->getMock('FastFeed\\Parser\\ParserInterface');
        $this->fastFeed->pushParser($parserMock);
        $this->assertInstanceOf('FastFeed\\Parser\\ParserInterface', $this->fastFeed->popParser());
    }