You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/07/22 21:29:20 UTC

[commons-pool] branch master updated: [POOL-361] Comment both new test methods.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/master by this push:
     new c3ae592  [POOL-361] Comment both new test methods.
c3ae592 is described below

commit c3ae592dc2aa27408ebece0b63aa9a6771062fb6
Author: Gary Gregory <gg...@rocketsoftware.com>
AuthorDate: Mon Jul 22 17:29:13 2019 -0400

    [POOL-361] Comment both new test methods.
---
 .../java/org/apache/commons/pool2/impl/TestGenericObjectPool.java  | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/pool2/impl/TestGenericObjectPool.java b/src/test/java/org/apache/commons/pool2/impl/TestGenericObjectPool.java
index 27c81b2..a1539f7 100644
--- a/src/test/java/org/apache/commons/pool2/impl/TestGenericObjectPool.java
+++ b/src/test/java/org/apache/commons/pool2/impl/TestGenericObjectPool.java
@@ -2839,7 +2839,9 @@ public class TestGenericObjectPool extends TestBaseObjectPool {
         Assert.assertEquals(1, simpleFactory.validateCounter);
     }
 
-    // Pool-361
+    /**
+     * Tests POOL-361
+     */
     @Test
     public void testValidateOnCreate() throws Exception {
         genericObjectPool.setTestOnCreate(true);
@@ -2847,6 +2849,9 @@ public class TestGenericObjectPool extends TestBaseObjectPool {
         Assert.assertEquals(1, simpleFactory.validateCounter);
     }
 
+    /**
+     * Tests POOL-361
+     */
     @Test
     public void testValidateOnCreateFailure() throws Exception {
         genericObjectPool.setTestOnCreate(true);