AuthFacadeTest.php 453 B

12345678910111213141516171819
  1. <?php
  2. namespace Illuminate\Tests\Integration\Support;
  3. use Illuminate\Support\Facades\Auth;
  4. use Orchestra\Testbench\TestCase;
  5. use RuntimeException;
  6. class AuthFacadeTest extends TestCase
  7. {
  8. public function testItFailsIfTheUiPackageIsMissing()
  9. {
  10. $this->expectExceptionObject(new RuntimeException(
  11. 'In order to use the Auth::routes() method, please install the laravel/ui package.'
  12. ));
  13. Auth::routes();
  14. }
  15. }