0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-05-19 03:41:18 +03:00

33 lines
867 B
C#
Raw Normal View History

using X86Disassembler.X86;
2025-04-14 23:08:52 +03:00
using X86Disassembler.X86.Operands;
namespace X86DisassemblerTests.InstructionTests;
/// <summary>
/// Tests for INT3 instruction handler
/// </summary>
public class Int3InstructionTests
{
/// <summary>
/// Tests the Int3Handler for decoding INT3 instruction
/// </summary>
[Fact]
public void Int3Handler_DecodesInt3_Correctly()
{
// Arrange
// INT3 (CC)
byte[] codeBuffer = new byte[] { 0xCC };
var decoder = new InstructionDecoder(codeBuffer, codeBuffer.Length);
// Act
var instruction = decoder.DecodeInstruction();
// Assert
Assert.NotNull(instruction);
2025-04-14 23:08:52 +03:00
Assert.Equal(InstructionType.Int, instruction.Type);
// Check that we have no operands
Assert.Empty(instruction.StructuredOperands);
}
}