/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/Integration/Support/AuthFacadeTest.php
19 строк
453 B
Graham Campbell
Update AuthFacadeTest.php
02 июн 2020, 20:14
02 июн 2020, 20:14
6b11700
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\Integration\Support; use Illuminate\Support\Facades\Auth; use Orchestra\Testbench\TestCase; use RuntimeException; class AuthFacadeTest extends TestCase { public function testItFailsIfTheUiPackageIsMissing() { $this->expectExceptionObject(new RuntimeException( 'In order to use the Auth::routes() method, please install the laravel/ui package.' )); Auth::routes(); } }