1
0
Fork 0
mirror of synced 2025-04-04 14:23:33 +03:00

ref #91532 создание тестов

This commit is contained in:
Ivan Chaplygin 2023-08-24 17:04:02 +03:00
parent c6363f9a78
commit 37e11f5871

View file

@ -0,0 +1,41 @@
<?php
use Intaro\RetailCrm\Service\CustomerService;
/**
* Class CustomerService
*/
class CustomerServiceTest extends BitrixTestCase
{
private $customerService;
public function setUp(): void
{
parent::setUp();
COption::SetOptionString('intaro.retailcrm', 'api_version', 'v5');
CModule::IncludeModule('intaro.retailcrm');
$this->customerService = new CustomerService();
}
public function testCreateModel()
{
$user = new CUser;
$arUser = $user->Register(
'TestLogin',
'TestName',
'TestLastName',
'TestPassword',
'TestPassword',
'testemail@gmail.com'
);
$customer = $this->customerService->createModel($arUser['ID']);
$fields = CUser::GetByID($arUser['ID'])->Fetch();
$dateRegister = new DateTimeImmutable($fields['DATE_REGISTER']);
self::assertEquals($dateRegister->getTimestamp(), $customer->createdAt->getTimestamp());
CUser::Delete($arUser['ID']);
}
}