File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,21 @@ public function test_Reports_Create_CollectedFees()
22
22
$ this ->assertSame ($ created ->Status , "PENDING " );
23
23
}
24
24
25
+ public function test_Reports_Create_UserWalletTransactions ()
26
+ {
27
+ $ report = new Report ();
28
+ $ report ->ReportType = "USER_WALLET_TRANSACTIONS " ;
29
+ $ report ->DownloadFormat = "CSV " ;
30
+ $ report ->AfterDate = 1740787200 ;
31
+ $ report ->BeforeDate = 1743544740 ;
32
+ $ created = $ this ->_api ->ReportsV2 ->Create ($ report );
33
+
34
+ $ this ->assertNotNull ($ created );
35
+ $ this ->assertNotNull ($ created ->Id );
36
+ $ this ->assertSame ($ created ->ReportType , "USER_WALLET_TRANSACTIONS " );
37
+ $ this ->assertSame ($ created ->Status , "PENDING " );
38
+ }
39
+
25
40
public function test_Reports_Get ()
26
41
{
27
42
$ report = $ this ->getNewReportInstance ();
You can’t perform that action at this time.
0 commit comments