FastFeed\Tests\Cache\FastFeedTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        $this->cacheMock = $this->getMockBuilder('Desarrolla2\\Cache\\CacheInterface')->disableOriginalConstructor()->getMock();
        $this->fastFeed = new FastFeed($this->httpMock, $this->loggerMock);
        $this->fastFeed->setCache($this->cacheMock);
        $this->fastFeed->addFeed('desarrolla2', 'http://desarrolla2.com/feed/');
    }