Laravel – 如何在PHPUnit测试中使用faker?

前端之家收集整理的这篇文章主要介绍了Laravel – 如何在PHPUnit测试中使用faker?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在运行测试时给出了这个错误

undefined variable $faker.

这是WithFaker文件.

https://github.com/laravel/framework/blob/5.5/src/Illuminate/Foundation/Testing/WithFaker.php

<?PHP

namespace Tests\Unit;

use App\User;
use Tests\TestCase;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Foundation\Testing\RefreshDatabase;

class LoginTest extends TestCase
{

    use WithFaker;

    /**
     * A basic test example.
     *
     * @return void
     */

    /** @test */
    public function test_example()
    {

        $user = User::create([
            'username' => $faker->firstName(),]);

    }

}
你必须使用$this-> faker-> firstName()而不仅仅是$faker-> firstName()
原文链接:https://www.f2er.com/laravel/240139.html

猜你在找的Laravel相关文章