1
0
mirror of synced 2024-11-25 22:36:07 +03:00
aliexpress-top-client/tests/Component/EnvironmentTest.php

44 lines
1.0 KiB
PHP

<?php
/**
* PHP version 7.4
*
* @category EnvironmentTest
* @package Component
* @author RetailCRM <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
namespace Component;
use PHPUnit\Framework\TestCase;
use RetailCrm\Component\Environment;
use RetailCrm\Factory\ClientFactory;
use RetailCrm\Factory\ContainerFactory;
use RetailCrm\TopClient\Client;
/**
* Class EnvironmentTest
*
* @category EnvironmentTest
* @package Component
* @author RetailDriver LLC <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see https://help.retailcrm.ru
*/
class EnvironmentTest extends TestCase
{
public function testCreateClient()
{
$client = ClientFactory::withContainer(
ContainerFactory::withEnv(Environment::DEV)
->withClient(new \GuzzleHttp\Client())
->create()
)->setServiceUrl(Client::OVERSEAS_ENDPOINT)->create();
self::assertInstanceOf(Client::class, $client);
}
}