From e17a2c5871ee9b3ef580b92b2f85ea2db753ca73 Mon Sep 17 00:00:00 2001 From: xiaoxin <50882499@qq.com> Date: Mon, 31 Jul 2023 11:46:39 +0800 Subject: [PATCH] Service exception test update --- .../server/common/base/ServiceExceptionTest.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java b/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java index 23acf4a3..fc55129b 100644 --- a/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java +++ b/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java @@ -24,12 +24,10 @@ import cn.hippo4j.server.common.base.exception.ServiceException; import com.fasterxml.jackson.annotation.JsonTypeInfo; import org.checkerframework.checker.units.qual.A; import org.junit.jupiter.api.Test; - import java.util.Objects; /** * Service exception test - * */ public class ServiceExceptionTest { @@ -99,13 +97,4 @@ public class ServiceExceptionTest { Assert.isTrue(Objects.equals(serviceException.getErrorCode().getCode(), ErrorCodeEnum.LOGIN_TIMEOUT.getCode())); Assert.isTrue(Objects.equals(serviceException.getMessage(), message)); } - - - - - - - - - }