Package org.yaac.server.egql

Examples of org.yaac.server.egql.SelectClause


  @Test
  public void test() throws Exception {
    String inputStr = "select a.b, a.c";
   
    SelectClause actual = TestUtil.parser(inputStr).select_clause().e;
   
    SelectClause expected = new SelectClause().add(new FieldEvaluator("a.b")).add(new FieldEvaluator("a.c"));
   
    Assert.assertEquals(expected, actual);
  }
View Full Code Here

TOP

Related Classes of org.yaac.server.egql.SelectClause

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.