Mercurial > hg > isophonics-drupal-site
comparison core/modules/simpletest/src/WebTestBase.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 1fec387a4317 |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
17 use Drupal\Core\Url; | 17 use Drupal\Core\Url; |
18 use Drupal\system\Tests\Cache\AssertPageCacheContextsAndTagsTrait; | 18 use Drupal\system\Tests\Cache\AssertPageCacheContextsAndTagsTrait; |
19 use Drupal\Tests\EntityViewTrait; | 19 use Drupal\Tests\EntityViewTrait; |
20 use Drupal\Tests\block\Traits\BlockCreationTrait as BaseBlockCreationTrait; | 20 use Drupal\Tests\block\Traits\BlockCreationTrait as BaseBlockCreationTrait; |
21 use Drupal\Tests\Listeners\DeprecationListenerTrait; | 21 use Drupal\Tests\Listeners\DeprecationListenerTrait; |
22 use Drupal\Tests\node\Traits\ContentTypeCreationTrait; | 22 use Drupal\Tests\node\Traits\ContentTypeCreationTrait as BaseContentTypeCreationTrait; |
23 use Drupal\Tests\node\Traits\NodeCreationTrait; | 23 use Drupal\Tests\node\Traits\NodeCreationTrait as BaseNodeCreationTrait; |
24 use Drupal\Tests\Traits\Core\CronRunTrait; | 24 use Drupal\Tests\Traits\Core\CronRunTrait; |
25 use Drupal\Tests\TestFileCreationTrait; | 25 use Drupal\Tests\TestFileCreationTrait; |
26 use Drupal\Tests\user\Traits\UserCreationTrait; | 26 use Drupal\Tests\user\Traits\UserCreationTrait as BaseUserCreationTrait; |
27 use Drupal\Tests\XdebugRequestTrait; | 27 use Drupal\Tests\XdebugRequestTrait; |
28 use Zend\Diactoros\Uri; | 28 use Zend\Diactoros\Uri; |
29 | 29 |
30 /** | 30 /** |
31 * Test case for typical Drupal tests. | 31 * Test case for typical Drupal tests. |
42 } | 42 } |
43 use AssertPageCacheContextsAndTagsTrait; | 43 use AssertPageCacheContextsAndTagsTrait; |
44 use BaseBlockCreationTrait { | 44 use BaseBlockCreationTrait { |
45 placeBlock as drupalPlaceBlock; | 45 placeBlock as drupalPlaceBlock; |
46 } | 46 } |
47 use ContentTypeCreationTrait { | 47 use BaseContentTypeCreationTrait { |
48 createContentType as drupalCreateContentType; | 48 createContentType as drupalCreateContentType; |
49 } | 49 } |
50 use CronRunTrait; | 50 use CronRunTrait; |
51 use AssertMailTrait { | 51 use AssertMailTrait { |
52 getMails as drupalGetMails; | 52 getMails as drupalGetMails; |
53 } | 53 } |
54 use NodeCreationTrait { | 54 use BaseNodeCreationTrait { |
55 getNodeByTitle as drupalGetNodeByTitle; | 55 getNodeByTitle as drupalGetNodeByTitle; |
56 createNode as drupalCreateNode; | 56 createNode as drupalCreateNode; |
57 } | 57 } |
58 use UserCreationTrait { | 58 use BaseUserCreationTrait { |
59 createUser as drupalCreateUser; | 59 createUser as drupalCreateUser; |
60 createRole as drupalCreateRole; | 60 createRole as drupalCreateRole; |
61 createAdminRole as drupalCreateAdminRole; | 61 createAdminRole as drupalCreateAdminRole; |
62 } | 62 } |
63 | 63 |