Package com.technophobia.substeps.model

Examples of com.technophobia.substeps.model.Step


        Assert.assertThat(sc1.getSourceStartLineNumber(), is(8));

        final List<Step> steps = sc1.getSteps();
        Assert.assertThat(steps.size(), is(3));

        final Step s1 = steps.get(0);
        Assert.assertThat(s1.getSourceLineNumber(), is(9));
        final Step s2 = steps.get(1);
        Assert.assertThat(s2.getSourceLineNumber(), is(11));
        final Step s3 = steps.get(2);
        Assert.assertThat(s3.getSourceLineNumber(), is(13));
    }
View Full Code Here

TOP

Related Classes of com.technophobia.substeps.model.Step

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.