Package com.pardot.rhombus.cobject

Examples of com.pardot.rhombus.cobject.CObjectOrdering


public class CObjectOrderingTest {
  private static final Logger logger = LoggerFactory.getLogger(CObjectOrderingTest.class);

  @Test
  public void testFromString() {
    CObjectOrdering ordering;
    ordering = CObjectOrdering.fromString("ASC");
    assertEquals(CObjectOrdering.ASCENDING, ordering);
    ordering = CObjectOrdering.fromString("DESC");
    assertEquals(CObjectOrdering.DESCENDING, ordering);
  }
View Full Code Here

TOP

Related Classes of com.pardot.rhombus.cobject.CObjectOrdering

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.