Package com.consol.citrus.actions

Examples of com.consol.citrus.actions.StopTimeAction


       
       
        Assert.assertEquals(builder.testCase().getActions().size(), 1);
        Assert.assertEquals(builder.testCase().getActions().get(0).getClass(), StopTimeAction.class);
       
        StopTimeAction action = (StopTimeAction)builder.testCase().getActions().get(0);
        Assert.assertEquals(action.getName(), "stop-time");
        Assert.assertEquals(action.getId(), "TestId");
    }
View Full Code Here


    @Test
    public void testFailActionParser() {
        assertActionCount(2);
        assertActionClassAndName(StopTimeAction.class, "stop-time");
       
        StopTimeAction action = getNextTestActionFromTest();
        Assert.assertEquals(action.getId(), "CITRUS_TIMELINE");
       
        action = getNextTestActionFromTest();
        Assert.assertEquals(action.getId(), "CitrusTimeLine");
    }
View Full Code Here

TOP

Related Classes of com.consol.citrus.actions.StopTimeAction

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.