Files
hztha.hkpgsow.cn/vendor/topthink/think-dumper/tests/DumperTest.php
gaofeng 0b165153c6 提交
2026-05-13 10:44:29 +08:00

15 lines
218 B
PHP

<?php
namespace think\tests\dumper;
use PHPUnit\Framework\TestCase;
class DumperTest extends TestCase
{
public function testDump()
{
dump(['aa' => 'bbb', 'cc' => 'dd']);
dump($this);
}
}