我有功能
public void foo(final String s) {
if(StringUtils.isBlank(s) {//throw error}
//rest of the logic
}
和单元测试
@Test(//expected exception)
public void testFooWithBlankString() {
ClassOfFoo.foo(StringUtils.EMPTY);
}
这个对吗?我应该创建一个空白变量吗
BLANK = " "
并在单元测试中使用它?