示例#1
0
        public void Execute_without_argument_call_action()
        {
            _RelayToogleCommand.Execute();

            _Action.Received(1).Invoke();
        }
示例#2
0
 public void Execute_without_generic_argument_call_action(string parameter)
 {
     _RelayToogleCommand.Execute(parameter);
     _Action.Received(1).Invoke(parameter);
 }