This commit is contained in:
Looly 2024-12-23 21:23:11 +08:00
parent 42ab1c810b
commit b4eb357775
5 changed files with 34 additions and 11 deletions

View File

@ -14,15 +14,15 @@
* limitations under the License.
*/
package org.dromara.hutool.core.util;
package org.dromara.hutool.core.compress;
import org.dromara.hutool.core.compress.ZipReader;
import org.dromara.hutool.core.compress.ZipUtil;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.io.file.PathUtil;
import org.dromara.hutool.core.lang.Console;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.util.ByteUtil;
import org.dromara.hutool.core.util.CharsetUtil;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

View File

@ -14,11 +14,8 @@
* limitations under the License.
*/
package org.dromara.hutool.core.util;
package org.dromara.hutool.core.reflect;
import org.dromara.hutool.core.reflect.FieldUtil;
import org.dromara.hutool.core.reflect.ModifierType;
import org.dromara.hutool.core.reflect.ModifierUtil;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledForJreRange;

View File

@ -14,12 +14,10 @@
* limitations under the License.
*/
package org.dromara.hutool.core.util;
package org.dromara.hutool.core.regex;
import org.dromara.hutool.core.collection.ListUtil;
import org.dromara.hutool.core.lang.Console;
import org.dromara.hutool.core.regex.PatternPool;
import org.dromara.hutool.core.regex.ReUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

View File

@ -0,0 +1,28 @@
/*
* 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.core.util;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class SystemUtilTest {
@Test
void getSystemPropertiesTest() {
final String s = SystemUtil.get("path");
Assertions.assertNotNull(s);
}
}

View File

@ -23,7 +23,7 @@ import org.junit.jupiter.api.Test;
import java.io.File;
public class SystemUtilTest {
public class ManagementUtilTest {
@Test
@Disabled