LaravelのTestでFakerを使いたい場合にはWithFakerトレイトを使うと便利です。
ControllerTest.php
<?php
namespace Tests;
use Tests\TestCase;
use Illuminate\Foundation\Testing\WithFaker;
class ControllerTest extends TestCase {
use WithFaker;
public function() {
$this->faker // fakerが使える
}
}