public void Bitwise_complement_y_should_return_negative_y_minus_1() { // Arrange var opcode = Opcodes.ComplementY(); // Act var output = ArithmeticLogicUnit.Do(opcode, new Byte2(27), new Byte2(42)); // Assert output.ToInt16().Should().Be(-43); }