0xV3NOMx
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


Current Path : /var/www/html/bcu/razorpay-webhook/non_composer_tests/
Upload File :
Current File : /var/www/html/bcu/razorpay-webhook/non_composer_tests/RazorpayTest.php

<?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'));
	}
}