ExtraFieldDisplayViewTest.php in Extra Field 8.2
File
tests/src/Functional/ExtraFieldDisplayViewTest.php
View source
<?php
namespace Drupal\Tests\extra_field\Functional;
class ExtraFieldDisplayViewTest extends ExtraFieldBrowserTestBase {
public static $modules = [
'extra_field',
'extra_field_test',
'node',
];
protected $content;
protected function setUp() {
parent::setUp();
$this->content = $this
->createContent('first_node_type');
}
public function testAllNodeTypesView() {
$url = $this->content
->toUrl();
$this
->drupalGet($url);
$this
->assertSession()
->pageTextContains('Output from AllNodeTypesTest');
}
}