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-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new c255fac3 Javadoc
c255fac3 is described below

commit c255fac3ea044af8292ca827ee555217539c4836
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Oct 12 08:34:48 2023 -0400

    Javadoc
---
 .../org/apache/commons/vfs2/AbstractProviderTestCase.java     | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git 
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
 
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
index 83304c8a..3d5ae64f 100644
--- 
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
+++ 
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
@@ -37,6 +37,7 @@ import org.junit.Assert;
  * File system test cases, which verifies the structure and naming 
functionality.
  * <p>
  * Works from a base folder, and assumes a particular structure under that 
base folder.
+ * </p>
  */
 public abstract class AbstractProviderTestCase extends TestCase {
 
@@ -232,28 +233,28 @@ public abstract class AbstractProviderTestCase extends 
TestCase {
     }
 
     /**
-     * Returns the file system manager used by this test.
+     * Gets the file system manager used by this test.
      */
     protected DefaultFileSystemManager getManager() {
         return manager;
     }
 
     /**
-     * get the provider configuration.
+     * Gets the provider configuration.
      */
     public ProviderTestConfig getProviderConfig() {
         return providerConfig;
     }
 
     /**
-     * Returns the read test folder.
+     * Gets the read test folder.
      */
     protected FileObject getReadFolder() {
         return readFolder;
     }
 
     /**
-     * Returns the capabilities required by the tests of this test case. The 
tests are not run if the provider being
+     * Gets the capabilities required by the tests of this test case. The 
tests are not run if the provider being
      * tested does not support all the required capabilities. Return null or 
an empty array to always run the tests.
      * <p>
      * This implementation returns null.
@@ -263,7 +264,7 @@ public abstract class AbstractProviderTestCase extends 
TestCase {
     }
 
     /**
-     * Returns the write test folder.
+     * Gets the write test folder.
      */
     protected FileObject getWriteFolder() {
         return writeFolder;

Reply via email to