adminUser = $this->drupalCreateUser([ 'administer font entities', ]); $this->drupalLogin($this->adminUser); } /** * Tests @font-your-face install and admin page shows up. */ public function testFontYourFaceLocalFontsSection() { // Font settings page. $this->drupalGet(Url::fromRoute('entity.local_font_config_entity.collection')); $this->assertText(t('There is no Custom Font yet.')); $this->drupalGet(Url::fromRoute('entity.local_font_config_entity.add_form')); $this->assertText(t('Name of the Custom Font')); } }