Add tests for Assert.noNullElements(Collection, ...)

Commit 4000b244ff introduced new variants for noNullElements in
org.springframework.util.Assert.

This commit adds the corresponding tests to AssertTests.

Closes gh-25239
This commit is contained in:
Roland Weisleder 2020-06-12 09:37:25 +02:00 committed by GitHub
parent b66e718560
commit f9cca5d9d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 66 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2019 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -22,10 +22,12 @@ import java.util.function.Supplier;
import org.junit.jupiter.api.Test;
import static java.util.Arrays.asList;
import static java.util.Collections.emptyList;
import static java.util.Collections.emptyMap;
import static java.util.Collections.singletonList;
import static java.util.Collections.singletonMap;
import static org.assertj.core.api.Assertions.assertThatCode;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
@ -401,6 +403,69 @@ class AssertTests {
.withMessage(null);
}
@Test
void noNullElementsWithCollection() {
assertThatCode(() ->
Assert.noNullElements(asList("foo", "bar"), "enigma"))
.doesNotThrowAnyException();
}
@Test
void noNullElementsWithEmptyCollection() {
assertThatCode(() ->
Assert.noNullElements(emptyList(), "enigma"))
.doesNotThrowAnyException();
}
@Test
void noNullElementsWithNullCollection() {
assertThatCode(() ->
Assert.noNullElements((Collection<Object>) null, "enigma"))
.doesNotThrowAnyException();
}
@Test
void noNullElementsWithCollectionAndNullElement() {
assertThatIllegalArgumentException().isThrownBy(() ->
Assert.noNullElements(asList("foo", null, "bar"), "enigma"))
.withMessageContaining("enigma");
}
@Test
void noNullElementsWithCollectionAndMessageSupplier() {
assertThatCode(() ->
Assert.noNullElements(asList("foo", "bar"), () -> "enigma"))
.doesNotThrowAnyException();
}
@Test
void noNullElementsWithEmptyCollectionAndMessageSupplier() {
assertThatCode(() ->
Assert.noNullElements(emptyList(), "enigma"))
.doesNotThrowAnyException();
}
@Test
void noNullElementsWithNullCollectionAndMessageSupplier() {
assertThatCode(() ->
Assert.noNullElements((Collection<Object>) null, () -> "enigma"))
.doesNotThrowAnyException();
}
@Test
void noNullElementsWithCollectionAndNullElementAndMessageSupplier() {
assertThatIllegalArgumentException().isThrownBy(() ->
Assert.noNullElements(asList("foo", null, "bar"), () -> "enigma"))
.withMessageContaining("enigma");
}
@Test
void noNullElementsWithCollectionAndNullElementAndNullMessageSupplier() {
assertThatIllegalArgumentException().isThrownBy(() ->
Assert.noNullElements(asList("foo", null, "bar"), (Supplier<String>) null))
.withMessage(null);
}
@Test
void notEmptyCollection() {
Assert.notEmpty(singletonList("foo"), "enigma");