mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 13:16:07 +03:00
14 lines
364 B
PHP
14 lines
364 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../../' . getenv('TEST_SUITE') . '/TestCase.php';
|
|
|
|
class ModelsProviderTest extends TestCase {
|
|
public function testCatalogIncludeDependencies() {
|
|
$provider = new \retailcrm\ModelsProvider(static::$registry);
|
|
|
|
$provider->includeDependencies();
|
|
|
|
$this->assertNotEmpty($this->model_checkout_order);
|
|
}
|
|
}
|