19 lines
297 B
PHP
19 lines
297 B
PHP
|
<?php
|
||
|
|
||
|
namespace RetailCrm\Tests;
|
||
|
|
||
|
use RetailCrm\Test\TestCase;
|
||
|
|
||
|
class ApiClientTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @group unit
|
||
|
*/
|
||
|
public function testConstruct()
|
||
|
{
|
||
|
$client = static::getApiClient();
|
||
|
|
||
|
$this->assertInstanceOf('RetailCrm\ApiClient', $client);
|
||
|
}
|
||
|
}
|