assertThat(feature.getTags(), contains("TEST TAG1", "TEST TAG2"));
}
@Test
public void should_trim_the_tags_on_feature() {
final Feature feature = featureWith(successScenario());
feature.tag("tag1 ", " ", " tag2", "tag3", null);
assertThat(feature.getTags(), contains("tag1", "tag2", "tag3"));
}