Your IP : 216.73.216.95


Current Path : /var/www/tests/phpunit/opencart/catalog/model/account/
Upload File :
Current File : /var/www/tests/phpunit/opencart/catalog/model/account/CustomerGroupTest.php

<?php

class CatalogModelAccountCustomerGroupTest extends OpenCartTest {
	
	/**
	 * @before
	 */
	public function setupTest() {		
		$this->loadModelByRoute('account/customer_group');
	}
	
	public function testGetCustomerGroup() {
		$result = $this->model_account_customer_group->getCustomerGroup(1);
		$this->assertNotEmpty($result);
	}
	
	public function testGetCustomerGroups() {
		$result = $this->model_account_customer_group->getCustomerGroups();
		$this->assertCount(1, $result);
	}
}