opencart-module/tests/system/lib/ModelsProviderTest.php

14 lines
364 B
PHP
Raw Normal View History

<?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);
}
}