📜  setUp() 必须与 Illuminate\Foundation\Testing\TestCase::setUp() 兼容 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:40.931000             🧑  作者: Mango

代码示例1
//Attention to :void
protected function setUp(): void
    {
        $this->markTestSkipped(
            'This test will be skipped when you run `php-unit`.'
        );
    }