mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix epe
This commit is contained in:
@@ -111,4 +111,13 @@ public class StrJoinerTest {
|
||||
final StrJoiner merge = joiner1.merge(joiner2);
|
||||
Assertions.assertEquals("[123,456,789]", merge.toString());
|
||||
}
|
||||
|
||||
@Test
|
||||
void issue3444Test() {
|
||||
final StrJoiner strJoinerEmpty = StrJoiner.of(",");
|
||||
Assertions.assertEquals(0, strJoinerEmpty.length());
|
||||
|
||||
final StrJoiner strJoinerWithContent = StrJoiner.of(",").append("haha");
|
||||
Assertions.assertEquals(4, strJoinerWithContent.length());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user