Package net.sourceforge.pebble.logging

Examples of net.sourceforge.pebble.logging.LogEntry


    assertTrue(comp.compare(c1, c1) == 0);
    assertTrue(comp.compare(c1, c2) < 0);
    assertTrue(comp.compare(c2, c1) > 0);

    c1.addLogEntry(new LogEntry());
    assertTrue(comp.compare(c1, c2) < 0);
    assertTrue(comp.compare(c2, c1) > 0);

    c2.addLogEntry(new LogEntry());
    c2.addLogEntry(new LogEntry());
    assertTrue(comp.compare(c1, c2) > 0);
    assertTrue(comp.compare(c2, c1) < 0);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.pebble.logging.LogEntry

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.