generated from panliang/owl-admin-starter
20 lines
349 B
PHP
20 lines
349 B
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*/
|
|
public function test_that_true_is_true(): void
|
|
{
|
|
$ids = ['1', '2'];
|
|
$a = array_map(fn ($v) => 'party_cate_' . $v, $ids);
|
|
dump($a);
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|