Package com.consol.citrus.actions

Examples of com.consol.citrus.actions.LoadPropertiesAction


        builder.execute();
       
        Assert.assertEquals(builder.testCase().getActions().size(), 1);
        Assert.assertEquals(builder.testCase().getActions().get(0).getClass(), LoadPropertiesAction.class);
       
        LoadPropertiesAction action = (LoadPropertiesAction)builder.testCase().getActions().get(0);
        Assert.assertEquals(action.getName(), "load");
        Assert.assertEquals(action.getFilePath(), "classpath:test.properties");
    }
View Full Code Here


    @Test
    public void testLoadPropertiesActionParser() {
        assertActionCount(1);
        assertActionClassAndName(LoadPropertiesAction.class, "load");
       
        LoadPropertiesAction action = getNextTestActionFromTest();
        Assert.assertEquals(action.getFilePath(), "classpath:com/consol/citrus/actions/load.properties");
    }
View Full Code Here

TOP

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

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.