%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/razorpay/razorpay/non_composer_tests/ |
Upload File : |
<?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'));
}
}