You are here

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

Test the command array when label and value are provided.

File

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

Class

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

Namespace

Drupal\Tests\ga\Unit\AnalyticsCommand

Code

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