You are here

public function JsonLogDataTest::testServerAndSiteTagsAreCombined in JSONlog 8.2

Same name and namespace in other branches
  1. 8 tests/src/Unit/JsonLogDataTest.php \Drupal\Tests\jsonlog\Unit\JsonLogDataTest::testServerAndSiteTagsAreCombined()
  2. 3.x tests/src/Unit/JsonLogDataTest.php \Drupal\Tests\jsonlog\Unit\JsonLogDataTest::testServerAndSiteTagsAreCombined()

File

tests/src/Unit/JsonLogDataTest.php, line 213

Class

JsonLogDataTest
Unit tests for JsonLogData class

Namespace

Drupal\Tests\jsonlog\Unit

Code

public function testServerAndSiteTagsAreCombined() {
  $this->data = new JsonLogData('test_site_id', 'test_canonical');
  $server_tags = 'a,b';
  $site_tags = 'x,y';
  $this->data
    ->setTags($server_tags, $site_tags);
  $this
    ->assertArrayEquals([
    'a',
    'b',
    'x',
    'y',
  ], $this->data
    ->getTags(), 'All tags present.');
}