Update test

This commit is contained in:
de4dot 2019-05-24 07:04:47 +02:00
parent 1e1d9e90dd
commit 942dd3fa6e
1 changed files with 1 additions and 0 deletions

View File

@ -196,6 +196,7 @@ namespace Iced.UnitTests.Intel.DecoderTests {
decoder.Decode(out var instr);
Assert.Equal(tc.Code, instr.Code);
Assert.Equal(tc.Mnemonic, instr.Mnemonic);
Assert.Equal(instr.Mnemonic, instr.Code.ToMnemonic());
Assert.Equal(byteLength, instr.ByteLength);
Assert.Equal(rip, instr.IP);
Assert.Equal(decoder.IP, instr.NextIP);