Files
miniapi/vendor/topthink/think-dumper/tests/DumperTest.php
gaofeng 81ade70944 提交
2026-06-17 09:23:18 +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);
}
}