public void DelegateCommandBaseWithNullExecuteFuncShouldThrow()
 {
     Assert.Throws <ArgumentNullException>(() =>
     {
         var command = DelegateCommandMock.FromAsyncHandler(null);
     });
 }
Exemple #2
0
 public void DelegateCommandBaseWithNullExecuteFuncShouldThrow()
 {
     var command = DelegateCommandMock.FromAsyncHandler(null);
 }