opencart-module/tests/system/lib/repository/CustomerRespositoryTest.php

18 lines
511 B
PHP

<?php
require_once __DIR__ . '/../../../' . getenv('TEST_SUITE') . '/TestCase.php';
class CustomerRespositoryTest extends TestCase {
const CUSTOMER_ID = 1;
const ADDRESS_ID = 1;
public function testGetCustomer() {
$repository = new \retailcrm\repository\CustomerRepository(static::$registry);
$customer = $repository->getCustomer(static::CUSTOMER_ID);
$this->assertNotEmpty($customer);
$this->assertEquals(static::CUSTOMER_ID, $customer['customer_id']);
}
}