����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.133.106.206 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./bofirm.gltechlimited.com/vendor/bitpay/sdk/test/unit/BitPaySDK/ |
Upload File : |
<?php namespace BitPaySDK\Test; use BitPaySDK\Config; use PHPUnit\Framework\TestCase; class ConfigTest extends TestCase { public function testInstanceOf() { $config = new Config(); $this->assertInstanceOf(Config::class, $config); } public function testGetEnvironment() { $config = new Config(); $environment = 'test'; $config->setEnvironment($environment); $this->assertEquals($environment, $config->getEnvironment()); } public function testGetEnvConfig() { $config = new Config(); $envConfig = 'test'; $config->setEnvConfig($envConfig); $this->assertEquals($envConfig, $config->getEnvConfig()); } }