public void Ctor_RefitSettings_CreatesIApiServiceFactory()
        {
            var refitSettings = new RefitSettings();

            var factory = new RefitApiServiceFactory(refitSettings);

            Assert.IsAssignableFrom <IApiServiceFactory>(factory);
        }
        public void Ctor_Null_CreatesIApiServiceFactory()
        {
            var factory = new RefitApiServiceFactory(null);

            Assert.IsAssignableFrom <IApiServiceFactory>(factory);
        }
 public RefitApiServiceFactoryTests()
 {
     _factory = new RefitApiServiceFactory();
 }