Package org.moresbycoffee.mbyhave8.structure

Examples of org.moresbycoffee.mbyhave8.structure.Scenario.tag()


    }

    @Test
    public void should_should_not_do_anything_with_null_tag() {
        final Scenario scenario = successScenario();
        scenario.tag(null);
        assertTrue(scenario.getTags().isEmpty());
    }


    @Test
View Full Code Here


    }

    @Test
    public void should_add_issues_to_tags_as_well_on_a_scenario() {
        final Scenario scenario = successScenario();
        scenario.tag("tag1").issue("MBH-1", "MBH-2");
        assertThat(scenario.getTags(), contains("tag1", "MBH-1", "MBH-2"));
    }

    @Test
    public void should_add_tag_to_feature() {
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.