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\AnalyticsCommandCode
public function testWithNegativeIntegerValue() {
$command = new Event('category', 'action', NULL, -1);
}