public void TestByteArrayToIntBigEndianShouldConvertCorrectly() { byte[] testBytes = { 0x00, 0x00, 0x11, 0x94 }; int correctInteger = 4500; int convertedInteger = ByteHelper.ByteArrayToIntBigEndian(testBytes); Assert.AreEqual(correctInteger, convertedInteger); }