Example #1
0
 public void GeoNames_GeoNamesClient_ShouldImplementIConsumeGeoNames()
 {
     using (var client = new GeoNamesClient())
     {
         client.ShouldImplement(typeof(IConsumeGeoNames));
     }
 }
Example #2
0
 public void GeoNames_GeoNamesClient_ShouldImplementClientBase_WithIInvokeGeoNamesServices()
 {
     using (var client = new GeoNamesClient())
     {
         client.ShouldImplement(typeof(ClientBase <IInvokeGeoNamesServices>));
     }
 }