You are here

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

Test the default priority.

File

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

Class

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

Namespace

Drupal\Tests\ga\Unit\AnalyticsCommand

Code

public function testDefaultPriority() {
  $command = new Event('category', 'action');
  $this
    ->assertEquals(-10, $command
    ->getPriority());
}