mirror of
https://github.com/retailcrm/url-validator.git
synced 2024-11-22 13:16:08 +03:00
21 lines
367 B
PHP
21 lines
367 B
PHP
<?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());
|
|
}
|
|
}
|