BonCodeUnitTestProject.BonCodeAJP13PacketTest.GetSimpleByteArrayTest C# (CSharp) Method

GetSimpleByteArrayTest() private method

private GetSimpleByteArrayTest ( ) : void
return void
        public void GetSimpleByteArrayTest()
        {
            byte[] data = null; // TODO: Initialize to an appropriate value
            byte[] value = null; // TODO: Initialize to an appropriate value
            byte[] valueExpected = null; // TODO: Initialize to an appropriate value
            int pos = 0; // TODO: Initialize to an appropriate value
            int length = 0; // TODO: Initialize to an appropriate value
            int expected = 0; // TODO: Initialize to an appropriate value
            int actual;
            actual = BonCodeAJP13Packet_Accessor.GetSimpleByteArray(data, ref value, pos, length);
            Assert.AreEqual(valueExpected, value);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }