Laravel phpunit跳过自定义测试文件

时间:2016-06-27 18:32:30

标签: php laravel phpunit

我使用命令

创建了一个laravel测试文件
  

php artisan make:测试EventUserRelations

当我运行 phpunit 时,就好像文件甚至不存在一样。我试图通过测试以确保它正在测试。以下是文件中的代码:

class EventUserRelations extends TestCase
{
    public function testExample()
    {
        $this->fail();
    }
}

这是结果。

  

phpunit --debug

PHPUnit 5.4.6 by Sebastian Bergmann and contributors.


Starting test 'ExampleTest::testBasicExample'.
.                                                                   1 / 1 (100%)

Time: 119 ms, Memory: 20.75MB

1 个答案:

答案 0 :(得分:1)

在Laravel中,测试文件需要以..test.php结尾。因此,将EventUserRelations.php更改为EventUserRelationsTest.php,它应该有效。