Inheritance: extends PHPUnit_Framework_TestCase
コード例 #1
0
ファイル: FastFeedTest.php プロジェクト: fastfeed/fastfeed
 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/');
 }
コード例 #2
0
 public function setUp()
 {
     parent::setUp();
     $this->fastFeed = new FastFeed($this->httpMock, $this->loggerMock);
     $this->fastFeed->addFeed('desarrolla2', 'http://desarrolla2.com/feed/');
 }