mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-22 09:40:50 +00:00
16 lines
316 B
PHP
16 lines
316 B
PHP
<?php
|
|
|
|
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));
|
|
}
|
|
}
|