当我从spring Boot 存储库中找到许多模块时,我可以在/src/main/
中找到如下所示的Assert,
public OAuth2AccessToken(TokenType tokenType, String tokenValue, Instant issuedAt, Instant expiresAt,
Set<String> scopes) {
super(tokenValue, issuedAt, expiresAt);
Assert.notNull(tokenType, "tokenType cannot be null");
this.tokenType = tokenType;
this.scopes = Collections.unmodifiableSet((scopes != null) ? scopes : Collections.emptySet());
}
对于/src/main/
下的所有此类验证,不应该使用要抛出的异常。
就我所读到的,Assert是用于/src/test/
下的测试用例的。
1条答案
按热度按时间eit6fx6z1#
这会抛出异常。“assertion”一词的意思是“声明某个东西应该是真的”,这可能发生在测试或运行时。你将Assert的概念与Java中的
assert
关键字或测试Assert库(如AssertJ)中的特定工具相结合。在这个特定的例子中,所讨论的
Assert
是org.springframework.util.Assert
:Guava
Preconditions
和commons-langValidate
可提供类似设施;它们不被称为“assert,”但它们具有相同的语义。