JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "CardTest.php"
Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/razorpay/razorpay/tests/CardTest.php
File size: 495 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Razorpay\Tests;
use Razorpay\Api\Request;
class CardTest extends TestCase
{
/**
* Specify unique card id
*/
private $cardId = "card_LcQgzpfvWP0UKF";
public function setUp(): void
{
parent::setUp();
}
/**
* Fetch Card details
*/
public function testFetchCard()
{
$data = $this->api->card->fetch($this->cardId);
$this->assertTrue(in_array($this->cardId, $data->toArray()));
}
}