mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-20 16:42:23 +00:00
16 lines
341 B
PHP
16 lines
341 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace CurlTest;
|
|
|
|
use Curl\ArrayUtil;
|
|
use Curl\CaseInsensitiveArray;
|
|
|
|
class ArrayUtilTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testCaseInsensitiveArrayIsArrayAssoc()
|
|
{
|
|
$array = new CaseInsensitiveArray();
|
|
$this->assertTrue(ArrayUtil::isArrayAssoc($array));
|
|
}
|
|
}
|