Exemplo n.º 1
0
 public void CanExecuteOverloadExecutesTruePredicate()
 {
     RelayCommand command = new RelayCommand(x => { }, y => (int)y == 1);
     Assert.IsTrue(command.CanExecute(1));
 }
Exemplo n.º 2
0
 public void CanExecuteIsTrueByDefault()
 {
     RelayCommand command = new RelayCommand(x => { });
     Assert.IsTrue(command.CanExecute(null));
 }