Package br.com.objectos.way.relational

Examples of br.com.objectos.way.relational.LongLoader


    assertThat(strings.get(2), equalTo("Simple{id=3, string=ABC}"));
  }

  public void sum_aggregate_should_be_ok() {
    DeprecatedSql sql = sqlProvider.get();
    sql.select("sum(ID)").from("WAY_RELATIONAL.SIMPLE").as("S").andLoadWith(new LongLoader());

    Long result = sql.single();

    assertThat(result, equalTo(Long.valueOf(1 + 2 + 3)));
  }
View Full Code Here

TOP

Related Classes of br.com.objectos.way.relational.LongLoader

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.