mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
add methods
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Copyright (c) 2024 Hutool Team and hutool.cn
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.dromara.hutool.json;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class JSONFactoryTest {
|
||||
@Test
|
||||
void parseFromStringBuilderTest() {
|
||||
final String jsonStr = "{\"name\":\"张三\"}";
|
||||
final JSON parse = JSONFactory.getInstance().parse(new StringBuilder(jsonStr));
|
||||
Assertions.assertEquals(JSONObject.class, parse.getClass());
|
||||
}
|
||||
|
||||
@Test
|
||||
void parseFromStringTest() {
|
||||
final String jsonStr = "{\"name\":\"张三\"}";
|
||||
final JSON parse = JSONFactory.getInstance().parse(jsonStr);
|
||||
Assertions.assertEquals(JSONObject.class, parse.getClass());
|
||||
}
|
||||
}
|
@@ -31,7 +31,7 @@ public class Issue3681Test {
|
||||
Assertions.assertEquals("\"abc\"", abc);
|
||||
|
||||
abc = JSONUtil.toJsonStr(Optional.of("123"));
|
||||
Assertions.assertEquals("\"123\"", abc);
|
||||
Assertions.assertEquals("123", abc);
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -46,6 +46,7 @@ public class Issue3681Test {
|
||||
Assertions.assertEquals("\"abc\"", abc);
|
||||
|
||||
abc = JSONUtil.toJsonStr(Opt.of("123"));
|
||||
Assertions.assertEquals("\"123\"", abc);
|
||||
Assertions.assertEquals("123", abc);
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -33,7 +33,7 @@ public class IssueI9DX5HTest {
|
||||
entry.setKey(StrUtil.toUnderlineCase((CharSequence) entry.getKey()));
|
||||
return true;
|
||||
});
|
||||
final JSONObject jsonObject = (JSONObject) factory.parse(xml);
|
||||
final JSONObject jsonObject = factory.parseObj(xml);
|
||||
|
||||
Assertions.assertEquals("{\"good_msg\":\"你好\"}", jsonObject.toString());
|
||||
}
|
||||
|
Reference in New Issue
Block a user