예제 #1
0
 public void the_created_command_should_indeed_be_the_inverse_of_the_orginal_command()
 {
     _inverseCommand.IsInverseFor(_originalCommand).ShouldBeTrue();
 }
 public void should_have_beeen_marked_as_inverse_for_the_add_command()
 {
     _result.IsInverseFor(sut).ShouldBeTrue();
 }
 public void inverse_command_should_be_inverse_for_add_command()
 {
     _inverseCommand.IsInverseFor(sut).ShouldBeTrue();
 }