我使用命令
创建了一个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
答案 0 :(得分:1)
在Laravel中,测试文件需要以..test.php结尾。因此,将EventUserRelations.php
更改为EventUserRelationsTest.php
,它应该有效。