JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "MercadoPagoConfigTest.php"

Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/tests/MercadoPago/MercadoPagoConfigTest.php
File size: 413 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MercadoPago\Tests;

use MercadoPago\MercadoPagoConfig;
use MercadoPago\Net\MPDefaultHttpClient;
use PHPUnit\Framework\TestCase;

class MercadoPagoConfigTest extends TestCase
{
    public function testGetHttpClient()
    {
        MercadoPagoConfig::setHttpClient(new MPDefaultHttpClient());
        $this->assertInstanceOf(MPDefaultHttpClient::class, MercadoPagoConfig::getHttpClient());
    }
}