Package com.jdkcn.myblog.util

Examples of com.jdkcn.myblog.util.Sorter.decorate()


  @Test
  public void testSorter() throws Exception {
    Sorter sorter = new Sorter().desc("name").asc("property").desc("createDate");
    String hql = "from Entry entry";
    String orderedHql = "from Entry entry order by name desc,property asc,createDate desc";
    assertEquals(sorter.decorate(hql), orderedHql);
  }
 
  @Test
  public void testSorterWithExistOrderBy() throws Exception {
    Sorter sorter = new Sorter().desc("name").asc("property").desc("createDate");
View Full Code Here


  @Test
  public void testSorterWithExistOrderBy() throws Exception {
    Sorter sorter = new Sorter().desc("name").asc("property").desc("createDate");
    String hql = "from Entry entry order by entry.title desc";
    String orderedHql = "from Entry entry order by entry.title desc,name desc,property asc,createDate desc";
    assertEquals(sorter.decorate(hql), orderedHql);
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.