Package classes

Examples of classes.NBestList.sortDescending()


  public void testSortString() {
    try {
      NBestList n = new NBestList();
      n.addResult("r1", 2, 2, 2);
      n.addResult("r2", 22, 222, 23);
      n.sortDescending();
     
      if (!(n.get(0).getName().equals("r2"))
          && !(n.get(1).getName().equals("r1")))
        fail("get() not working as expected!");
    }
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.