opencart-module/tests/admin/ModelRetailcrmProductsAdminTest.php

15 lines
303 B
PHP
Raw Normal View History

2018-09-27 16:46:04 +03:00
<?php
namespace Tests;
class ModelRetailcrmProductsAdminTest extends OpenCartTest
{
public function testGetProductOptions()
{
$model = $this->loadModel('extension/retailcrm/products');
$options = $model->getProductOptions(42);
$this->assertNotEmpty($options);
}
}