mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 13:16:07 +03:00
15 lines
464 B
PHP
15 lines
464 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../../' . getenv('TEST_SUITE') . '/TestCase.php';
|
|
|
|
class ModelsProviderAdminTest extends TestCase {
|
|
public function testAdminIncludeDependencies() {
|
|
// TODO should be run with "processIsolation", but with that not working asserting
|
|
// $provider = new \retailcrm\ModelsProvider(static::$registry);
|
|
//
|
|
// $provider->includeDependencies();
|
|
//
|
|
// $this->assertNotEmpty($this->model_sale_order);
|
|
}
|
|
}
|