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