This commit is contained in:
Looly 2023-09-18 16:30:39 +08:00
parent 64d4d64ccc
commit c8fe05740a

View File

@ -0,0 +1,12 @@
package org.dromara.hutool.json;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class IssueI81QZ2Test {
@Test
void toJsonStrTest() {
final boolean bool = true;
Assertions.assertEquals("true", JSONUtil.toJsonStr(bool));
}
}