File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
junit-platform-testkit/src/main/java/org/junit/platform/testkit/engine Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -288,6 +288,7 @@ public final void assertEventsMatchExactly(Condition<? super Event>... condition
288288 * @see TestExecutionResultConditions
289289 */
290290 @ SafeVarargs
291+ @ SuppressWarnings ("varargs" )
291292 public final void assertEventsMatchLoosely (Condition <? super Event >... conditions ) {
292293 Preconditions .notNull (conditions , "conditions must not be null" );
293294 Preconditions .containsNoNullElements (conditions , "conditions must not contain null elements" );
@@ -318,6 +319,7 @@ public final void assertEventsMatchLoosely(Condition<? super Event>... condition
318319 * @see TestExecutionResultConditions
319320 */
320321 @ SafeVarargs
322+ @ SuppressWarnings ("varargs" )
321323 public final void assertEventsMatchLooselyInOrder (Condition <? super Event >... conditions ) {
322324 Preconditions .notNull (conditions , "conditions must not be null" );
323325 Preconditions .containsNoNullElements (conditions , "conditions must not contain null elements" );
You can’t perform that action at this time.
0 commit comments