Geocoder\Laravel\Tests\Laravel5_3\Providers\GeocoderServiceTest::testItCanUseMaxMindBinaryWithoutProvider PHP Method

testItCanUseMaxMindBinaryWithoutProvider() public method

    public function testItCanUseMaxMindBinaryWithoutProvider()
    {
        //Arrange
        $this->expectException(FunctionNotFound::class);
        $provider = new MaxMindBinary('dummy');
        // Act
        app('geocoder')->registerProvider($provider);
        // Assert
        // By getting past the constructor parameters requirements, we know we
        // are instantiating the provider correctly.
    }