Package com.jitcaforwin.trackinfoanalyzer.log.status

Examples of com.jitcaforwin.trackinfoanalyzer.log.status.Error.toChar()


    assertFalse(error.isOk());
    assertFalse(error.isWarning());
    assertTrue(error.isError());
    assertFalse(error.isUnknown());
   
    assertEquals(LogStatus.ERROR, error.toChar());
   
    assertFalse(error.hasToBeUpdated(new Ok()));
    assertFalse(error.hasToBeUpdated(new Warning()));
    assertFalse(error.hasToBeUpdated(new Error()));
    assertFalse(error.hasToBeUpdated(new Unkown()));
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.