Files
kulakpos_web/vendor/mercadopago/dx-php/tests/SDKTest.php
triagungbiantoro 417b7b7453
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m27s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 31s
Build, Push and Deploy / deploy-production (push) Has been skipped
harga pada beranda terhubung ke manage plans di dashboard admin
2026-04-25 21:57:25 +07:00

59 lines
1.4 KiB
PHP
Executable File

<?php
use PHPUnit\Framework\TestCase;
/**
* EntityTest Class Doc Comment
*
* @package MercadoPago
*/
class ConfigTest extends TestCase
{
public static function setUpBeforeClass()
{
MercadoPago\SDK::cleanCredentials();
if (file_exists(__DIR__ . '/../.env')) {
$dotenv = new Dotenv\Dotenv(__DIR__, '/../.env');
$dotenv->load();
}
MercadoPago\SDK::setClientId(getenv('CLIENT_ID'));
MercadoPago\SDK::setClientSecret(getenv('CLIENT_SECRET'));
}
/**
* @covers MercadoPago\SDK
*/
public function testSettings()
{
$this->assertEquals(getenv('CLIENT_ID'), MercadoPago\SDK::getClientId());
$this->assertEquals(getenv('CLIENT_SECRET'), MercadoPago\SDK::getClientSecret());
}
/**
* @covers MercadoPago\SDK
*/
public function testDoGetToken()
{
$this->assertNotNull(MercadoPago\SDK::getAccessToken());
}
public function testSetMultipleAT(){
MercadoPago\SDK::setMultipleCredentials(
array(
"mla" => "MLA_AT",
"mlb" => "MLB_AT"
)
);
$this->assertNotNull(MercadoPago\SDK::config()->getData()['mla']);
$this->assertNotNull(MercadoPago\SDK::config()->getData()['mlb']);
}
}