assertNotNull()
method属于JUnit 4 org.junit.Assert
class。在JUnit 5中,所有JUnit 4的断言方法都被移到org.junit.jupiter.api.Assertions类。
当我们想断言一个对象不是空的时候,我们可以使用assertNotNull断言。
断言一个对象不是空的。如果它是空的,会抛出一个断言错误。
参数。
object
- 要检查的对象或null当我们想断言一个对象不是空时,我们可以使用assertNotNull
断言。
import static org.junit.Assert.assertNotNull;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Test;
import com.javaguides.strings.StringUtility;
public class AssertNotNullExample {
public static String[] toStringArray(final Collection<?> collection) {
if (collection == null) {
return null;
}
return collection.toArray(new String[collection.size()]);
}
@Test
public void toStringArrayTest() {
final String[] strArray = StringUtility.toStringArray(Arrays.asList("a", "b", "c"));
for (final String element : strArray) {
assertNotNull(element);
}
}
}
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://www.javaguides.net/2018/08/junit-assert.assertnotnull-method-example.html
内容来源于网络,如有侵权,请联系作者删除!