View file sdark.mobi/vendor/xsolla/xsolla-sdk-php/tests/Integration/API/EventsTest.php

File size: 275B
<?php

namespace Xsolla\SDK\Tests\Integration\API;

/**
 * @group api
 */
class EventsTest extends AbstractAPITest
{
    public function testListEvents()
    {
        $events = $this->xsollaClient->ListEvents();
        static::assertInternalType('array', $events);
    }
}