Mam dwie identyczne tablice bajtów w następującym segmencie kodu:
/// <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);
}
Obie tablice są identyczne co do samego bajtu. W tym scenariuszu, dlaczego Assert.AreEqual zawiedzie?
Assert.AreEqual
będzie działać dobrze.