'Fontawesome Tests', 'description' => 'Test core Fontawesome functionality.', 'group' => 'Font Awesome', ); } /** * Setup. */ protected function setUp() { parent::setUp('fontawesome'); } /** * Testing of download link. */ public function testDownload() { $this->drupalGet(FONTAWESOME_DOWNLOAD_URL); $this->assertResponse(200); } /** * Testing of CDN link. */ public function testLink() { $this->drupalGet('https:' . FONTAWESOME_CDN_URL); $this->assertResponse(200); } }