JUnit—Assert断言

以下是使用JUnit中的Assert和Apache Commons中的Assert类,来详细举例以上断言的几种情况的示例代码.

import org.apache.commons.lang3.StringUtils; // 引入Apache Commons中的StringUtils类
import org.junit.Assert; // 引入JUnit中的Assert类
import org.junit.Test;

public class AssertTest {
    
    
    
    @Test
    public void testAssert() {
    
    
        // 在JUnit中使用Assert类来进行断言
        Assert.assertTrue(2 == 1 + 1); // 断言2是否等于1+1,如果不成立则抛出AssertionError异常
        Assert.assertFalse(2 == 3); // 断言2是否不等于3,如果不成立则抛出AssertionError异常
        Assert.assertEquals(2, 1 + 1); // 断言2是否等于1+1,如果不成立则抛出AssertionError异常
    }
    
    @Test
    public void testAssertApacheCommons() {
    
    
        String str = "";
        // 在Apache Commons中使用Assert类来进行断言
        Assert.isTrue(2 == 1 + 1); // 断言2是否等于1+1,如果不成立则抛出IllegalArgumentException异常
        Assert.notNull(str, "字符串不能为空"); // 断言str是否为空,如果为空则抛出IllegalArgumentException异常
        Assert.hasText(str, "字符串必须包含文本"); // 断言str是否为空或只包含空格,如果是则抛出IllegalArgumentException异常
        Assert.hasLength(str, "字符串不能为空"); // 断言str是否为空或长度为0,如果是则抛出IllegalArgumentException异常,并输出指定的错误消息
        Assert.state(2 == 1 + 1, "状态错误"); // 断言2是否等于1+1,如果不成立则抛出IllegalStateException异常,并输出指定的错误消息
    }
}

猜你喜欢

转载自blog.csdn.net/l_010/article/details/131305881