Package org.jenkinsci.plugins.workflow.support.steps

Examples of org.jenkinsci.plugins.workflow.support.steps.StageStep$DescriptorImpl


    @ClassRule public static JenkinsRule r = new JenkinsRule();
   
    @Test public void basics() throws Exception {
        assertRoundTrip(new EchoStep("hello world"), "echo 'hello world'");
        StageStep s = new StageStep("Build");
        assertRoundTrip(s, "stage 'Build'");
        s.concurrency = 1;
        assertRoundTrip(s, "stage concurrency: 1, name: 'Build'");
    }
View Full Code Here

TOP

Related Classes of org.jenkinsci.plugins.workflow.support.steps.StageStep$DescriptorImpl

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.