url-validator/tests/Validator/CrmUrlTest.php

21 lines
367 B
PHP
Raw Normal View History

2021-08-16 14:12:25 +03:00
<?php
namespace RetailCrm\Tests\Validator;
use PHPUnit\Framework\TestCase;
use RetailCrm\Validator\CrmUrl;
/**
* Class CrmUrlTest
*
* @package RetailCrm\Tests\Validator
*/
class CrmUrlTest extends TestCase
{
public function testGetTargets(): void
{
$crmUrl = new CrmUrl();
self::assertEquals('property', $crmUrl->getTargets());
}
}