15 lines
215 B
PHP
15 lines
215 B
PHP
|
<?php
|
||
|
|
||
|
namespace Drupal\Tests\tdd_dublin\Functional;
|
||
|
|
||
|
use Drupal\Tests\BrowserTestBase;
|
||
|
|
||
|
class PageListTest extends BrowserTestBase {
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
protected static $modules = ['tdd_dublin'];
|
||
|
|
||
|
}
|