installEntitySchema('user'); ViewTestData::createTestViews(get_class($this), ['token_module_test']); } /** * Tests path token replacements generated from a view without a path. */ public function testTokenReplacementNoPath() { $token_handler = \Drupal::token(); $view = Views::getView('token_views_test'); $view->setDisplay('block_1'); $view->execute(); $this->assertSame('', $token_handler->replace('[view:url]', ['view' => $view]), 'Token [view:url] is empty for views without path.'); } }