protected function ModerationFormTest::setUp in Workbench Moderation 8.2
Sets the test up.
Overrides ModerationStateTestBase::setUp
File
- src/
Tests/ ModerationFormTest.php, line 15
Class
- ModerationFormTest
- Tests the moderation form, specifically on nodes.
Namespace
Drupal\workbench_moderation\TestsCode
protected function setUp() {
parent::setUp();
$this
->drupalLogin($this->adminUser);
$this
->createContentTypeFromUI('Moderated content', 'moderated_content', TRUE, [
'draft',
'needs_review',
'published',
], 'draft');
$this
->grantUserPermissionToCreateContentOfType($this->adminUser, 'moderated_content');
}