Examples of ClearTestStorageEvent


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

        assertTrue(testCaseResult.getParameters().isEmpty());
        assertTrue(testCaseResult.getStart() == 0 && testCaseResult.getStop() == 0);
    }

    private void fireClearTestStorage() {
        Allure.LIFECYCLE.fire(new ClearTestStorageEvent());
    }
View Full Code Here

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

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

    @Test
    public void clearTestContextTest() throws Exception {
        allure.fire(new ClearTestStorageEvent());
        assertThat(listener.get(SimpleListener.EventType.CLEAR_TEST_STORAGE_EVENT), is(1));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.