BonCodeUnitTestProject.BonCodeAJP13PacketTest.GetInt16Test C# (CSharp) 메소드

GetInt16Test() 개인적인 메소드

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