public void ShouldThrowArgumentNullExceptionWithInvalidServiceCollection() { var testPlugin = new HttpTestPlugin(); Assert.Throws <ArgumentNullException>(() => testPlugin.DefaultServiceRegistrationDelegate(null)); Assert.Throws <NullReferenceException>(() => testPlugin.ServiceRegistrationDelegate(null)); }
public void ShouldInvokeMethodOfTypeVoidWithValidServiceCollectionForDefaultRegistration() { var testPlugin = new HttpTestPlugin(); var serviceCollection = new ServiceCollection(); testPlugin.DefaultServiceRegistrationDelegate(serviceCollection); Assert.Contains(serviceCollection, s => s.ServiceType == typeof(IControllerFactory)); }
public void ShouldInvokeMethodOfTypeVoidWithValidServiceCollectionForDefaultRegistration() { var testPlugin = new HttpTestPlugin(); var serviceCollection = new ServiceCollection(); testPlugin.DefaultServiceRegistrationDelegate(serviceCollection); var methodReturnType = testPlugin.DefaultServiceRegistrationDelegate.Method.ReturnType.Name; Assert.True(methodReturnType == "Void"); Assert.Contains(serviceCollection, s => s.ServiceType == typeof(JsonResultExecutor)); }