mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 21:26:08 +03:00
12 lines
376 B
PHP
12 lines
376 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../../../' . getenv('TEST_SUITE') . '/TestCase.php';
|
|
|
|
class CustomerConverterFactoryTest extends TestCase {
|
|
public function testCreate() {
|
|
$converter = \retailcrm\factory\CustomerConverterFactory::create(static::$registry);
|
|
|
|
$this->assertInstanceOf(\retailcrm\service\RetailcrmCustomerConverter::class, $converter);
|
|
}
|
|
}
|