You are here

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

Test with a negative integer event value.

@expectedException \InvalidArgumentException

@expectedExceptionMessage Event value must be a positive integer

File

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

Class

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

Namespace

Drupal\Tests\ga\Unit\AnalyticsCommand

Code

public function testWithNegativeIntegerValue() {
  $command = new Event('category', 'action', NULL, -1);
}