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