Package ru.yandex.qatools.allure.events

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


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

    @Test
    public void testcaseEventTest() throws Exception {
        allure.fire(new TestCaseEvent() {
            @Override
            public void process(TestCaseResult context) {
            }
        });
        assertThat(listener.get(SimpleListener.EventType.TESTCASE_EVENT), is(1));
View Full Code Here

TOP

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

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.