JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrload(); } 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']); } }