public void When_a_raduis_greater_than_100_is_suplied_Then_it_will_throw_an_exception() { Assert.Throws <ArgumentOutOfRangeException>(() => { _sut.WithOrigin(new GeoCoordinate { Latitude = -73.582, Longitude = 45.511 }, 101); }); }