mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-08-18 20:38:02 +08:00
add test
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package cn.hutool.core.util;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class IssueICOJVZTest {
|
||||
@Test
|
||||
void toUnderlineTest(){
|
||||
String field = "PAGE_NAME";
|
||||
field = StrUtil.toUnderlineCase(field).toUpperCase();
|
||||
Assertions.assertEquals("PAGE_NAME", field);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user