public void MatchTokenTest()
 {
     PrivateObject param0 = null; // TODO: Initialize to an appropriate value
     ExpressionParserKernel_Accessor target = new ExpressionParserKernel_Accessor(param0); // TODO: Initialize to an appropriate value
     int currentPos = 0; // TODO: Initialize to an appropriate value
     int currentPosExpected = 0; // TODO: Initialize to an appropriate value
     int end = 0; // TODO: Initialize to an appropriate value
     string matched = string.Empty; // TODO: Initialize to an appropriate value
     string matchedExpected = string.Empty; // TODO: Initialize to an appropriate value
     ExpressionParserKernel_Accessor.TokenType expected = null; // TODO: Initialize to an appropriate value
     ExpressionParserKernel_Accessor.TokenType actual;
     actual = target.MatchToken(ref currentPos, end, out matched);
     Assert.AreEqual(currentPosExpected, currentPos);
     Assert.AreEqual(matchedExpected, matched);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }