You are here

public function EventTest::testWithLabelSettingCommands in Googalytics - Google Analytics 8

Test the command array when label is provided.

File

tests/src/Unit/AnalyticsCommand/EventTest.php, line 35

Class

EventTest
@coversDefaultClass \Drupal\ga\AnalyticsCommand\Event @group ga

Namespace

Drupal\Tests\ga\Unit\AnalyticsCommand

Code

public function testWithLabelSettingCommands() {
  $command = new Event('category', 'action', 'label');
  $this
    ->assertEquals([
    [
      'send',
      'event',
      'category',
      'action',
      'label',
    ],
  ], $command
    ->getSettingCommands());
}