コード例 #1
0
                public void ExcludeServices_ServiceTypesToExcludeNullValueGiven_ShouldThrowArgumentNullException()
                {

                    var behaviorConfiguration = new BehaviorConfiguration();		 

                    behaviorConfiguration.ExcludeServices((Type[])null);		 

                }
コード例 #2
0
                public void ExcludeServices_FilterNullValueGiven_ShouldThrowArgumentNullException()
                {

                    var behaviorConfiguration = new BehaviorConfiguration();		 

                    behaviorConfiguration.ExcludeServices((Func<Type, bool>)null);		 

                }