Package org.codehaus.jparsec.examples.sql.ast

Examples of org.codehaus.jparsec.examples.sql.ast.StringExpression


    assertParser(ExpressionParser.WILDCARD, "*",
        new WildcardExpression(QualifiedName.of()));
  }
 
  public void testString() {
    assertParser(ExpressionParser.STRING, "'foo'", new StringExpression("foo"));
  }
View Full Code Here


        new WildcardExpression(QualifiedName.of()));
  }

  @Test
  public void testString() {
    assertParser(ExpressionParser.STRING, "'foo'", new StringExpression("foo"));
  }
View Full Code Here

TOP

Related Classes of org.codehaus.jparsec.examples.sql.ast.StringExpression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.