8.6.x
parent
4bd5cab3f4
commit
a843845587
|
@ -19,11 +19,11 @@ use Drupal\system\Tests\Cache\AssertPageCacheContextsAndTagsTrait;
|
||||||
use Drupal\Tests\EntityViewTrait;
|
use Drupal\Tests\EntityViewTrait;
|
||||||
use Drupal\Tests\block\Traits\BlockCreationTrait as BaseBlockCreationTrait;
|
use Drupal\Tests\block\Traits\BlockCreationTrait as BaseBlockCreationTrait;
|
||||||
use Drupal\Tests\Listeners\DeprecationListenerTrait;
|
use Drupal\Tests\Listeners\DeprecationListenerTrait;
|
||||||
use Drupal\Tests\node\Traits\ContentTypeCreationTrait;
|
use Drupal\Tests\node\Traits\ContentTypeCreationTrait as BaseContentTypeCreationTrait;
|
||||||
use Drupal\Tests\node\Traits\NodeCreationTrait;
|
use Drupal\Tests\node\Traits\NodeCreationTrait as BaseNodeCreationTrait;
|
||||||
use Drupal\Tests\Traits\Core\CronRunTrait;
|
use Drupal\Tests\Traits\Core\CronRunTrait;
|
||||||
use Drupal\Tests\TestFileCreationTrait;
|
use Drupal\Tests\TestFileCreationTrait;
|
||||||
use Drupal\Tests\user\Traits\UserCreationTrait;
|
use Drupal\Tests\user\Traits\UserCreationTrait as BaseUserCreationTrait;
|
||||||
use Drupal\Tests\XdebugRequestTrait;
|
use Drupal\Tests\XdebugRequestTrait;
|
||||||
use Zend\Diactoros\Uri;
|
use Zend\Diactoros\Uri;
|
||||||
|
|
||||||
|
@ -44,18 +44,18 @@ abstract class WebTestBase extends TestBase {
|
||||||
use BaseBlockCreationTrait {
|
use BaseBlockCreationTrait {
|
||||||
placeBlock as drupalPlaceBlock;
|
placeBlock as drupalPlaceBlock;
|
||||||
}
|
}
|
||||||
use ContentTypeCreationTrait {
|
use BaseContentTypeCreationTrait {
|
||||||
createContentType as drupalCreateContentType;
|
createContentType as drupalCreateContentType;
|
||||||
}
|
}
|
||||||
use CronRunTrait;
|
use CronRunTrait;
|
||||||
use AssertMailTrait {
|
use AssertMailTrait {
|
||||||
getMails as drupalGetMails;
|
getMails as drupalGetMails;
|
||||||
}
|
}
|
||||||
use NodeCreationTrait {
|
use BaseNodeCreationTrait {
|
||||||
getNodeByTitle as drupalGetNodeByTitle;
|
getNodeByTitle as drupalGetNodeByTitle;
|
||||||
createNode as drupalCreateNode;
|
createNode as drupalCreateNode;
|
||||||
}
|
}
|
||||||
use UserCreationTrait {
|
use BaseUserCreationTrait {
|
||||||
createUser as drupalCreateUser;
|
createUser as drupalCreateUser;
|
||||||
createRole as drupalCreateRole;
|
createRole as drupalCreateRole;
|
||||||
createAdminRole as drupalCreateAdminRole;
|
createAdminRole as drupalCreateAdminRole;
|
||||||
|
|
Loading…
Reference in New Issue