mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-25 14:46:06 +03:00
16 lines
340 B
PHP
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);
|
|
}
|
|
}
|