BonCodeUnitTestProject.BonCodeAJP13PacketTest.GetDoubleTest C# (CSharp) Method

GetDoubleTest() private method

private GetDoubleTest ( ) : void
return void
        public void GetDoubleTest()
        {
            byte[] data = null; // TODO: Initialize to an appropriate value
            double value = 0F; // TODO: Initialize to an appropriate value
            double valueExpected = 0F; // 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.GetDouble(data, ref value, pos);
            Assert.AreEqual(valueExpected, value);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }