Error message

  • Warning: count(): Parameter must be an array or an object that implements Countable in _api_make_match_member_link() (line 1230 of /home/projects/api/www/sites/all/modules/api/api.formatting.inc).
  • Warning: count(): Parameter must be an array or an object that implements Countable in _api_make_match_member_link() (line 1230 of /home/projects/api/www/sites/all/modules/api/api.formatting.inc).

function ContentTmgmtEntitySourceUiTest::setUp

Overrides DrupalWebTestCase::setUp()

Overrides TMGMTTestBase::setUp

File

sources/content/tests/src/Functional/ContentTmgmtEntitySourceUiTest.php, line 35

Class

ContentTmgmtEntitySourceUiTest
Content entity source UI tests.

Namespace

Drupal\Tests\tmgmt_content\Functional

Code

function setUp() : void {
  parent::setUp();
  $this
    ->addLanguage('de');
  $this
    ->addLanguage('fr');
  $this
    ->addLanguage('es');
  $this
    ->addLanguage('el');
  $this
    ->addLanguage('it');
  $this
    ->createNodeType('page', 'Page', TRUE);
  $this
    ->createNodeType('article', 'Article', TRUE);
  $this
    ->loginAsAdmin(array(
    'create translation jobs',
    'submit translation jobs',
    'accept translation jobs',
    'administer blocks',
    'administer content translation',
    'edit any article content',
  ));
}