opencart-module/tests/catalog/ModelRetailcrmOrderCatalogTest.php
Akolzin Dmitry 6701bc03bb Tests
2018-09-27 16:46:04 +03:00

16 lines
340 B
PHP

<?php
namespace Tests;
class ModelRetailcrmOrderCatalogTest extends OpenCartTest
{
public function testGetOrderStatus()
{
$model = $this->loadModel('extension/retailcrm/order');
$status_id = $model->getOrderStatusId(1);
$this->assertNotEmpty($status_id);
$this->assertNotNull($status_id);
}
}