We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834e765 commit a214a78Copy full SHA for a214a78
src/test/java/org/apache/commons/pool2/impl/TestGenericObjectPoolConfig.java
@@ -92,6 +92,12 @@ void testSetSoftMinEvictableIdleDuration() {
92
assertEquals(Duration.ofSeconds(10), config.getSoftMinEvictableIdleDuration());
93
}
94
95
+ @Test
96
+ void testSetSoftMinEvictableIdleTime() {
97
+ config.setSoftMinEvictableIdleTime(Duration.ofSeconds(10));
98
+ assertEquals(Duration.ofSeconds(10), config.getSoftMinEvictableIdleTime());
99
+ }
100
+
101
@Test
102
void testSetSoftMinEvictableIdleTimeMillis() {
103
config.setSoftMinEvictableIdleTimeMillis(10_0000);
0 commit comments