Package com.wordpress.salaboy.model.messages

Examples of com.wordpress.salaboy.model.messages.FireExtinctedMessage


        //The process didn't finish yet
        Assert.assertEquals(0, proceduresEndedCount);

        // Ok, no more fire!
        ProceduresMGMTService.getInstance().notifyProcedures(
                MessageToEventConverter.convertMessageToEvent(new FireExtinctedMessage(emergency.getId(), new Date())));

        Thread.sleep(5000);

        //The emergency has ended
        Assert.assertEquals(1, proceduresEndedCount);
View Full Code Here


        //The process didn't finish yet
        Assert.assertEquals(0, proceduresEndedCount);

        // Ok, no more fire!
        ProceduresMGMTService.getInstance().notifyProcedures(
                MessageToEventConverter.convertMessageToEvent(new FireExtinctedMessage(emergency.getId(), new Date())));

        Thread.sleep(5000);

        //The emergency has ended
        Assert.assertEquals(1, proceduresEndedCount);
View Full Code Here

TOP

Related Classes of com.wordpress.salaboy.model.messages.FireExtinctedMessage

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.