FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
tests
/
Flows
Edit File: DisputesTest.php
<?php namespace Square\Tests; use Core\Types\CallbackCatcher; use Square\APIException; use Square\APIHelper; use Square\Exceptions; use Square\Apis\DisputesApi; use Square\Utils\FileWrapper; use Square\Models\ListDisputesResponse; use PHPUnit\Framework\TestCase; class DisputesTest extends TestCase { /** * @var \Square\Apis\DisputesApi Controller instance */ protected static $controller; /** * @var CallbackCatcher Callback */ protected static $httpResponse; /** * Setup test class */ public static function setUpBeforeClass(): void { self::$httpResponse = new CallbackCatcher(); self::$controller = ClientFactory::create(self::$httpResponse)->getDisputesApi(); } public function testListDisputes() { $apiResponse = self::$controller->listDisputes(); $this->assertTrue($apiResponse->isSuccess()); $this->assertTrue($apiResponse->getResult() instanceof ListDisputesResponse); } }
Save
Back