Beispiel #1
0
 public void ShouldNot_ChangeCommand(CommandDay8b command)
 {
     Assert.Throws <Exception>(() => command.ChangeCommand());
 }
Beispiel #2
0
 public void Should_ChangeCommand(CommandDay8b command, CommandDay8b expected)
 {
     command.ChangeCommand();
     command.Should().BeEquivalentTo(expected);
 }