mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-12-06 17:18:54 +08:00
add test
This commit is contained in:
parent
a09da9fd3d
commit
b5ccc1a7c9
@ -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);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user