test: add ThreadPoolRunStateHandler

pull/1200/head
Pan-YuJie 2 years ago
parent 6edc76c106
commit d325a8acf8

@ -8,6 +8,7 @@
<version>${revision}</version>
</parent>
<artifactId>hippo4j-core</artifactId>
<dependencies>
<dependency>
<groupId>cn.hippo4j</groupId>

@ -102,7 +102,7 @@ public class ThreadPoolRunStateHandlerTest {
}
@Test
void testGetheapMemory(){
void testGetHeapMemory() {
try (MockedStatic<MemoryUtil> memoryUtil = mockStatic(MemoryUtil.class)) {
memoryUtil.when(MemoryUtil::heapMemoryUsed).thenReturn(57534464L);
memoryUtil.when(MemoryUtil::heapMemoryMax).thenReturn(8566865920L);

@ -1,3 +1,20 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 cn.hippo4j.auth.filter;
import cn.hippo4j.common.toolkit.ReflectUtil;

@ -1,3 +1,20 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 cn.hippo4j.auth.service.impl;
import org.junit.Assert;

Loading…
Cancel
Save