Tôi có hai mảng byte giống hệt nhau trong đoạn mã sau:
/// <summary>
///A test for Bytes
///</summary>
[TestMethod()]
public void BytesTest() {
byte[] bytes = Encoding.UTF8.GetBytes(Properties.Resources.ExpectedPacketData);
TransferEventArgs target = new TransferEventArgs(bytes);
byte[] expected = Encoding.UTF8.GetBytes(Properties.Resources.ExpectedPacketValue);
byte[] actual;
actual = target.Bytes;
Assert.AreEqual(expected, actual);
}
Cả hai mảng đều giống hệt nhau đến từng byte. Trong trường hợp này, tại sao Assert.AreEqual lại thất bại?
Assert.AreEqual
sẽ hoạt động tốt.