コード例 #1
0
ファイル: IgnoreTest.java プロジェクト: RikTyer/gocd
 @Test
 public void shouldAddErrorToItsErrorCollection() {
   IgnoredFiles ignore = new IgnoredFiles("helper/*.*");
   ignore.addError("pattern", "not allowed");
   assertThat(ignore.errors().on("pattern"), is("not allowed"));
 }