File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
src/test/java/org/kohsuke/github Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ public static void beforeClass() {
90
90
assertThat (classFiles .size (), greaterThan (0 ));
91
91
}
92
92
93
+ /**
94
+ * Test naming conventions
95
+ */
93
96
@ Test
94
97
public void testRequireFollowingNamingConvention () {
95
98
final String reason = "This project follows standard java naming conventions and does not allow the use of underscores in names." ;
@@ -196,6 +199,8 @@ public void testRequireUseOfOnlySpecificApacheCommons() {
196
199
/**
197
200
* Have names containing unless.
198
201
*
202
+ * @param <T>
203
+ * the generic type
199
204
* @param infix
200
205
* the infix
201
206
* @param unlessPredicates
@@ -279,6 +284,11 @@ public static <T> DescribedPredicate<T> unless(DescribedPredicate<? super T> fir
279
284
return new UnlessPredicate (first , second );
280
285
}
281
286
287
+ /**
288
+ * Enum constants.
289
+ *
290
+ * @return the described predicate
291
+ */
282
292
private DescribedPredicate <? super JavaField > enumConstants () {
283
293
return new EnumConstantFieldPredicate ();
284
294
}
You can’t perform that action at this time.
0 commit comments