Package ru.yandex.qatools.allure.events

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


   
    @Test
    public void testCombinedValuesUpdateTestCaseStartedEvent() throws Exception {
        AnnotationManager annotationManager = setAnnotationManager("combinedMethod");

        TestCaseStartedEvent event = new TestCaseStartedEvent("some.uid", "some.name");
        annotationManager.update(event);
      
        assertThat(event.getTitle(), is(nullValue()));
        Description description = annotationManager.getDescription();
        assertThat(description, is(nullValue()));
        assertThat(event.getLabels(), hasItems(
                createStoryLabel("default.story"),
                createFeatureLabel("default.feature"),
                createSeverityLabel(SeverityLevel.CRITICAL),
                createIssueLabel("initial.issue")
        ));
View Full Code Here

TOP

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

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.