ReadInteger() public method

Reads next int data type from internal buffer.
public ReadInteger ( ) : int
return int
Example #1
0
 public void ReadIntegerTest()
 {
     DerData target = new DerData(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.ReadInteger();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }