public void Int64Tests(Int64 expectedValue, Byte[] givenBytes)
 {
     var decoder = new KafkaDecoder(givenBytes);
     var actualValue = decoder.ReadInt64();
     Assert.That(actualValue, Is.EqualTo(expectedValue));
 }