6
Чому Assert.AreEqual (T obj1, Tobj2) не працює з однаковими байтовими масивами
У мене є два однакові байтові масиви в наступному сегменті коду: /// <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); } Обидва масиви однакові до самого байта. …
86
c#
unit-testing
assert