. * */ namespace OCA\News\Utility; require_once(__DIR__ . "/../../classloader.php"); class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { private $fetcher; protected function setUp(){ $this->fetcher = new FeedFetcher($this->getAPIMock(), 'dir', 300); } public function testCanHandle(){ $url = 'google.de'; $this->assertTrue($this->fetcher->canHandle($url)); } // TODO: write tests for the remaining methods }