Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.141.46.108
<?php
namespace Razorpay\Api\Test;
include 'Razorpay.php';
use Razorpay\Api\Api;
class RazorpayTest extends \PHPUnit_Framework_TestCase
{
function setUp()
{
$this->api = new Api($_SERVER['KEY_ID'], $_SERVER['KEY_SECRET']);
}
public function testApiAccess()
{
$this->assertInstanceOf('Razorpay\Api\Api', $this->api);
}
public function testRequests()
{
$this->assertTrue(class_exists('\Requests'));
}
}
|