Catel.Test.MVVM.CompositeCommandFacts.TheUnregisterGenericActionMethod.ThrowsArgumentNullExceptionForNullAction C# (CSharp) Method

ThrowsArgumentNullExceptionForNullAction() private method

private ThrowsArgumentNullExceptionForNullAction ( ) : void
return void
            public void ThrowsArgumentNullExceptionForNullAction()
            {
                var compositeCommand = new CompositeCommand();

                ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => compositeCommand.UnregisterAction((Action<object>)null));
            }
CompositeCommandFacts.TheUnregisterGenericActionMethod