public void GetBytes_CallInstruction()
        {
            const string methodCall    = "void HelloWorld()";
            var          instruction   = new CallInstruction(methodCall);
            var          expectedBytes = InstructionByteBuilder.Create()
                                         .Opcode(Opcode.Call, methodCall)
                                         .AsSpan();

            Assert.True(expectedBytes.SequenceEqual(instruction.GetBytes()));
        }