You are here

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

Test the default priority.

File

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

Class

GenericTest
@coversDefaultClass \Drupal\ga\AnalyticsCommand\Generic @group ga

Namespace

Drupal\Tests\ga\Unit\AnalyticsCommand

Code

public function testDefaultPriority() {
  $command = new Generic('commandName');
  $this
    ->assertEquals(0, $command
    ->getPriority());
}