Files
hzmys.hkpgsow.cn/vendor/topthink/think-dumper/tests/DumperTest.php
gaofeng 6d9aee81aa 提交
2026-05-12 18:27:28 +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);
}
}