mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-08-18 20:38:02 +08:00
feat(all): Modify Project Package Name cn.hutool->org.dromara.hutool
BREAKING CHANGE: 包名变更 Closes https://gitee.com/dromara/hutool/issues/I6SC4B
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
package cn.hutool.extra.aop;
|
||||
package org.dromara.hutool.extra.aop;
|
||||
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.extra.aop.aspects.TimeIntervalAspect;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.extra.aop.aspects.TimeIntervalAspect;
|
||||
import lombok.Data;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.cglib;
|
||||
package org.dromara.hutool.extra.cglib;
|
||||
|
||||
import cn.hutool.core.convert.Convert;
|
||||
import org.dromara.hutool.core.convert.Convert;
|
||||
import lombok.Data;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,9 +1,9 @@
|
||||
package cn.hutool.extra.compress;
|
||||
package org.dromara.hutool.extra.compress;
|
||||
|
||||
import cn.hutool.core.io.file.FileUtil;
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.core.util.CharsetUtil;
|
||||
import cn.hutool.extra.compress.archiver.StreamArchiver;
|
||||
import org.dromara.hutool.core.io.file.FileUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.core.util.CharsetUtil;
|
||||
import org.dromara.hutool.extra.compress.archiver.StreamArchiver;
|
||||
import org.apache.commons.compress.archivers.ArchiveStreamFactory;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,8 +1,8 @@
|
||||
package cn.hutool.extra.compress;
|
||||
package org.dromara.hutool.extra.compress;
|
||||
|
||||
import cn.hutool.core.io.file.FileUtil;
|
||||
import cn.hutool.core.util.CharsetUtil;
|
||||
import cn.hutool.extra.compress.extractor.Extractor;
|
||||
import org.dromara.hutool.core.io.file.FileUtil;
|
||||
import org.dromara.hutool.core.util.CharsetUtil;
|
||||
import org.dromara.hutool.extra.compress.extractor.Extractor;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.emoji;
|
||||
package org.dromara.hutool.extra.emoji;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,9 +1,9 @@
|
||||
package cn.hutool.extra.expression;
|
||||
package org.dromara.hutool.extra.expression;
|
||||
|
||||
import cn.hutool.core.date.DateUtil;
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.core.map.Dict;
|
||||
import cn.hutool.extra.expression.engine.aviator.AviatorEngine;
|
||||
import org.dromara.hutool.core.date.DateUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.core.map.Dict;
|
||||
import org.dromara.hutool.extra.expression.engine.aviator.AviatorEngine;
|
||||
import lombok.Data;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,12 +1,12 @@
|
||||
package cn.hutool.extra.expression;
|
||||
package org.dromara.hutool.extra.expression;
|
||||
|
||||
import cn.hutool.core.map.Dict;
|
||||
import cn.hutool.extra.expression.engine.jexl.JexlEngine;
|
||||
import cn.hutool.extra.expression.engine.jfireel.JfireELEngine;
|
||||
import cn.hutool.extra.expression.engine.mvel.MvelEngine;
|
||||
import cn.hutool.extra.expression.engine.qlexpress.QLExpressEngine;
|
||||
import cn.hutool.extra.expression.engine.rhino.RhinoEngine;
|
||||
import cn.hutool.extra.expression.engine.spel.SpELEngine;
|
||||
import org.dromara.hutool.core.map.Dict;
|
||||
import org.dromara.hutool.extra.expression.engine.jexl.JexlEngine;
|
||||
import org.dromara.hutool.extra.expression.engine.jfireel.JfireELEngine;
|
||||
import org.dromara.hutool.extra.expression.engine.mvel.MvelEngine;
|
||||
import org.dromara.hutool.extra.expression.engine.qlexpress.QLExpressEngine;
|
||||
import org.dromara.hutool.extra.expression.engine.rhino.RhinoEngine;
|
||||
import org.dromara.hutool.extra.expression.engine.spel.SpELEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package cn.hutool.extra.ftp;
|
||||
package org.dromara.hutool.extra.ftp;
|
||||
|
||||
import cn.hutool.core.io.IoUtil;
|
||||
import cn.hutool.core.io.file.FileUtil;
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.extra.ssh.Sftp;
|
||||
import org.dromara.hutool.core.io.IoUtil;
|
||||
import org.dromara.hutool.core.io.file.FileUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.extra.ssh.Sftp;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.ftp;
|
||||
package org.dromara.hutool.extra.ftp;
|
||||
|
||||
public class SimpleFtpServerTest {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.mail;
|
||||
package org.dromara.hutool.extra.mail;
|
||||
|
||||
import com.sun.mail.util.MailSSLSocketFactory;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.mail;
|
||||
package org.dromara.hutool.extra.mail;
|
||||
|
||||
import cn.hutool.core.io.file.FileUtil;
|
||||
import org.dromara.hutool.core.io.file.FileUtil;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.management;
|
||||
package org.dromara.hutool.extra.management;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,7 +1,7 @@
|
||||
package cn.hutool.extra.management;
|
||||
package org.dromara.hutool.extra.management;
|
||||
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.extra.management.oshi.OshiUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.extra.management.oshi.OshiUtil;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
package cn.hutool.extra.management;
|
||||
package org.dromara.hutool.extra.management;
|
||||
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.extra.management.oshi.CpuInfo;
|
||||
import cn.hutool.extra.management.oshi.OshiUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.extra.management.oshi.CpuInfo;
|
||||
import org.dromara.hutool.extra.management.oshi.OshiUtil;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.management;
|
||||
package org.dromara.hutool.extra.management;
|
||||
|
||||
import cn.hutool.core.util.SystemUtil;
|
||||
import org.dromara.hutool.core.util.SystemUtil;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.pinyin;
|
||||
package org.dromara.hutool.extra.pinyin;
|
||||
|
||||
import cn.hutool.extra.pinyin.engine.bopomofo4j.Bopomofo4jEngine;
|
||||
import org.dromara.hutool.extra.pinyin.engine.bopomofo4j.Bopomofo4jEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.pinyin;
|
||||
package org.dromara.hutool.extra.pinyin;
|
||||
|
||||
import cn.hutool.extra.pinyin.engine.houbbpinyin.HoubbPinyinEngine;
|
||||
import org.dromara.hutool.extra.pinyin.engine.houbbpinyin.HoubbPinyinEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.pinyin;
|
||||
package org.dromara.hutool.extra.pinyin;
|
||||
|
||||
import cn.hutool.extra.pinyin.engine.jpinyin.JPinyinEngine;
|
||||
import org.dromara.hutool.extra.pinyin.engine.jpinyin.JPinyinEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.pinyin;
|
||||
package org.dromara.hutool.extra.pinyin;
|
||||
|
||||
import cn.hutool.extra.pinyin.engine.pinyin4j.Pinyin4jEngine;
|
||||
import org.dromara.hutool.extra.pinyin.engine.pinyin4j.Pinyin4jEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.pinyin;
|
||||
package org.dromara.hutool.extra.pinyin;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.pinyin;
|
||||
package org.dromara.hutool.extra.pinyin;
|
||||
|
||||
import cn.hutool.extra.pinyin.engine.tinypinyin.TinyPinyinEngine;
|
||||
import org.dromara.hutool.extra.pinyin.engine.tinypinyin.TinyPinyinEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
* See the Mulan PSL v2 for more details.
|
||||
*/
|
||||
|
||||
package cn.hutool.extra.qrcode;
|
||||
package org.dromara.hutool.extra.qrcode;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static cn.hutool.core.io.file.FileUtil.file;
|
||||
import static org.dromara.hutool.core.io.file.FileUtil.file;
|
||||
|
||||
public class Discussions3030Test {
|
||||
@Test
|
||||
@@ -1,11 +1,11 @@
|
||||
package cn.hutool.extra.qrcode;
|
||||
package org.dromara.hutool.extra.qrcode;
|
||||
|
||||
import cn.hutool.core.codec.binary.Base64;
|
||||
import cn.hutool.core.io.IoUtil;
|
||||
import cn.hutool.core.io.file.FileUtil;
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.core.text.StrUtil;
|
||||
import cn.hutool.swing.img.ImgUtil;
|
||||
import org.dromara.hutool.core.codec.binary.Base64;
|
||||
import org.dromara.hutool.core.io.IoUtil;
|
||||
import org.dromara.hutool.core.io.file.FileUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.core.text.StrUtil;
|
||||
import org.dromara.hutool.swing.img.ImgUtil;
|
||||
import com.google.zxing.BarcodeFormat;
|
||||
import com.google.zxing.datamatrix.encoder.SymbolShapeHint;
|
||||
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
||||
@@ -1,7 +1,7 @@
|
||||
package cn.hutool.extra.script;
|
||||
package org.dromara.hutool.extra.script;
|
||||
|
||||
import cn.hutool.core.exceptions.UtilException;
|
||||
import cn.hutool.core.io.resource.ResourceUtil;
|
||||
import org.dromara.hutool.core.exceptions.UtilException;
|
||||
import org.dromara.hutool.core.io.resource.ResourceUtil;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.spring;
|
||||
package org.dromara.hutool.extra.spring;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,7 +1,7 @@
|
||||
package cn.hutool.extra.spring;
|
||||
package org.dromara.hutool.extra.spring;
|
||||
|
||||
import cn.hutool.core.map.MapUtil;
|
||||
import cn.hutool.core.reflect.TypeReference;
|
||||
import org.dromara.hutool.core.map.MapUtil;
|
||||
import org.dromara.hutool.core.reflect.TypeReference;
|
||||
import lombok.Data;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -18,7 +18,7 @@ import java.util.Map;
|
||||
|
||||
@ExtendWith(SpringExtension.class)
|
||||
@SpringBootTest(classes = {SpringUtil.class, SpringUtilTest.Demo2.class})
|
||||
//@Import(cn.hutool.extra.spring.SpringUtil.class)
|
||||
//@Import(spring.org.dromara.hutool.extra.SpringUtil.class)
|
||||
public class SpringUtilTest {
|
||||
|
||||
/**
|
||||
@@ -1,7 +1,7 @@
|
||||
package cn.hutool.extra.spring;
|
||||
package org.dromara.hutool.extra.spring;
|
||||
|
||||
import cn.hutool.core.map.MapUtil;
|
||||
import cn.hutool.core.reflect.TypeReference;
|
||||
import org.dromara.hutool.core.map.MapUtil;
|
||||
import org.dromara.hutool.core.reflect.TypeReference;
|
||||
import lombok.Data;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -16,7 +16,7 @@ import java.util.Map;
|
||||
|
||||
@ExtendWith(SpringExtension.class)
|
||||
@SpringBootTest(classes = {SpringUtilWithAutoConfigTest.Demo2.class})
|
||||
//@Import(cn.hutool.extra.spring.SpringUtil.class)
|
||||
//@Import(spring.org.dromara.hutool.extra.SpringUtil.class)
|
||||
@EnableAutoConfiguration
|
||||
public class SpringUtilWithAutoConfigTest {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package cn.hutool.extra.ssh;
|
||||
package org.dromara.hutool.extra.ssh;
|
||||
|
||||
import cn.hutool.core.io.IoUtil;
|
||||
import cn.hutool.core.lang.Console;
|
||||
import org.dromara.hutool.core.io.IoUtil;
|
||||
import org.dromara.hutool.core.lang.Console;
|
||||
import com.jcraft.jsch.Session;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
@@ -1,6 +1,6 @@
|
||||
package cn.hutool.extra.ssh;
|
||||
package org.dromara.hutool.extra.ssh;
|
||||
|
||||
import cn.hutool.core.util.CharsetUtil;
|
||||
import org.dromara.hutool.core.util.CharsetUtil;
|
||||
import org.junit.Before;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,8 +1,8 @@
|
||||
package cn.hutool.extra.template;
|
||||
package org.dromara.hutool.extra.template;
|
||||
|
||||
import cn.hutool.core.map.Dict;
|
||||
import cn.hutool.core.text.StrUtil;
|
||||
import cn.hutool.extra.template.engine.jetbrick.JetbrickEngine;
|
||||
import org.dromara.hutool.core.map.Dict;
|
||||
import org.dromara.hutool.core.text.StrUtil;
|
||||
import org.dromara.hutool.extra.template.engine.jetbrick.JetbrickEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
package cn.hutool.extra.template;
|
||||
package org.dromara.hutool.extra.template;
|
||||
|
||||
import cn.hutool.core.map.Dict;
|
||||
import cn.hutool.core.text.StrUtil;
|
||||
import cn.hutool.extra.template.TemplateConfig.ResourceMode;
|
||||
import cn.hutool.extra.template.engine.beetl.BeetlEngine;
|
||||
import cn.hutool.extra.template.engine.enjoy.EnjoyEngine;
|
||||
import cn.hutool.extra.template.engine.freemarker.FreemarkerEngine;
|
||||
import cn.hutool.extra.template.engine.pebble.PebbleTemplateEngine;
|
||||
import cn.hutool.extra.template.engine.rythm.RythmEngine;
|
||||
import cn.hutool.extra.template.engine.thymeleaf.ThymeleafEngine;
|
||||
import cn.hutool.extra.template.engine.velocity.VelocityEngine;
|
||||
import cn.hutool.extra.template.engine.wit.WitEngine;
|
||||
import org.dromara.hutool.core.map.Dict;
|
||||
import org.dromara.hutool.core.text.StrUtil;
|
||||
import org.dromara.hutool.extra.template.TemplateConfig.ResourceMode;
|
||||
import org.dromara.hutool.extra.template.engine.beetl.BeetlEngine;
|
||||
import org.dromara.hutool.extra.template.engine.enjoy.EnjoyEngine;
|
||||
import org.dromara.hutool.extra.template.engine.freemarker.FreemarkerEngine;
|
||||
import org.dromara.hutool.extra.template.engine.pebble.PebbleTemplateEngine;
|
||||
import org.dromara.hutool.extra.template.engine.rythm.RythmEngine;
|
||||
import org.dromara.hutool.extra.template.engine.thymeleaf.ThymeleafEngine;
|
||||
import org.dromara.hutool.extra.template.engine.velocity.VelocityEngine;
|
||||
import org.dromara.hutool.extra.template.engine.wit.WitEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,8 +1,8 @@
|
||||
package cn.hutool.extra.template;
|
||||
package org.dromara.hutool.extra.template;
|
||||
|
||||
import cn.hutool.core.date.DateUtil;
|
||||
import cn.hutool.core.map.Dict;
|
||||
import cn.hutool.extra.template.engine.thymeleaf.ThymeleafEngine;
|
||||
import org.dromara.hutool.core.date.DateUtil;
|
||||
import org.dromara.hutool.core.map.Dict;
|
||||
import org.dromara.hutool.extra.template.engine.thymeleaf.ThymeleafEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,8 +1,8 @@
|
||||
package cn.hutool.extra.template;
|
||||
package org.dromara.hutool.extra.template;
|
||||
|
||||
import cn.hutool.core.map.Dict;
|
||||
import cn.hutool.core.util.CharsetUtil;
|
||||
import cn.hutool.extra.template.engine.velocity.VelocityEngine;
|
||||
import org.dromara.hutool.core.map.Dict;
|
||||
import org.dromara.hutool.core.util.CharsetUtil;
|
||||
import org.dromara.hutool.extra.template.engine.velocity.VelocityEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
package cn.hutool.extra.tokenizer;
|
||||
package org.dromara.hutool.extra.tokenizer;
|
||||
|
||||
import cn.hutool.core.collection.iter.IterUtil;
|
||||
import cn.hutool.extra.tokenizer.engine.analysis.SmartcnEngine;
|
||||
import cn.hutool.extra.tokenizer.engine.hanlp.HanLPEngine;
|
||||
import cn.hutool.extra.tokenizer.engine.ikanalyzer.IKAnalyzerEngine;
|
||||
import cn.hutool.extra.tokenizer.engine.jcseg.JcsegEngine;
|
||||
import cn.hutool.extra.tokenizer.engine.jieba.JiebaEngine;
|
||||
import cn.hutool.extra.tokenizer.engine.mmseg.MmsegEngine;
|
||||
import cn.hutool.extra.tokenizer.engine.mynlp.MynlpEngine;
|
||||
import cn.hutool.extra.tokenizer.engine.word.WordEngine;
|
||||
import org.dromara.hutool.core.collection.iter.IterUtil;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.analysis.SmartcnEngine;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.hanlp.HanLPEngine;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.ikanalyzer.IKAnalyzerEngine;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.jcseg.JcsegEngine;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.jieba.JiebaEngine;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.mmseg.MmsegEngine;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.mynlp.MynlpEngine;
|
||||
import org.dromara.hutool.extra.tokenizer.engine.word.WordEngine;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.validation;
|
||||
package org.dromara.hutool.extra.validation;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.hutool.extra.xml;
|
||||
package org.dromara.hutool.extra.xml;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
Reference in New Issue
Block a user