Stevebauman\Location\Tests\LocationTest::test_driver_does_not_exist PHP Метод

test_driver_does_not_exist() публичный Метод

    public function test_driver_does_not_exist()
    {
        config(['location.driver' => 'Test']);
        $this->setExpectedException(DriverDoesNotExistException::class);
        Location::get();
    }