Package ru.yandex.qatools.allure.events

Examples of ru.yandex.qatools.allure.events.StepEvent


        assertThat(listener.get(SimpleListener.EventType.STEP_STARTED_EVENT), is(1));
    }

    @Test
    public void stepEventTest() throws Exception {
        allure.fire(new StepEvent() {
            @Override
            public void process(Step context) {
            }
        });
        assertThat(listener.get(SimpleListener.EventType.STEP_EVENT), is(1));
View Full Code Here

TOP

Related Classes of ru.yandex.qatools.allure.events.StepEvent

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.