6
Tại sao Assert.AreEqual (T obj1, Tobj2) không thành công với các mảng byte giống hệt nhau
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 …
86
c#
unit-testing
assert