We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29fc0ef commit f43e14cCopy full SHA for f43e14c
1 file changed
tests/Feature/AnalyticsEventsTest.php
@@ -0,0 +1,20 @@
1
+<?php
2
+
3
+namespace Feature;
4
5
+use Tests\TestCase;
6
7
+class AnalyticsEventsTest extends TestCase
8
+{
9
+ //* there is no method for sending events
10
+ // public function testCanCreateAnEvent(): void
11
+ // {
12
+ // $returnData = $this->client()->analytics->rules()->even
13
+ // $this->assertEquals($returnData['name'], $this->ruleName);
14
+ // }
15
16
+ public function testNeedImplementationForAnalyticsEvents(): void
17
+ {
18
+ $this->assertTrue(true);
19
+ }
20
+}
0 commit comments