Package net.thucydides.core.steps

Examples of net.thucydides.core.steps.StepListener


        assertThat(sampleTestClass.steps, is(not(nullValue())));

    }
    @Test
    public void a_step_listener_should_be_created() {
        StepListener currentListener = Thucydides.getStepListener();

        SampleChildTestClass sampleTestClass = new SampleChildTestClass();

        Thucydides.initialize(sampleTestClass);
View Full Code Here


    }

    @Test
    public void no_step_listener_should_be_created() {
        StepListener currentListener = Thucydides.getStepListener();

        SampleChildTestClass sampleTestClass = new SampleChildTestClass();

        // Given we don't want to touch the step listened
        Thucydides.initializeWithNoStepListener(sampleTestClass);
View Full Code Here

TOP

Related Classes of net.thucydides.core.steps.StepListener

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.