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 2020/06/18 16:49:47 UTC

[commons-lang] branch master updated: Tests are public by convention on Commons Lang.

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


The following commit(s) were added to refs/heads/master by this push:
     new bb27069  Tests are public by convention on Commons Lang.
bb27069 is described below

commit bb270696fd83de10172b2483941e52711d78d860
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jun 18 12:49:40 2020 -0400

    Tests are public by convention on Commons Lang.
---
 src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java b/src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java
index 8816489..ee8fc09 100644
--- a/src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java
+++ b/src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java
@@ -24,11 +24,11 @@ import org.apache.commons.lang3.concurrent.Locks.Lock;
 import org.apache.commons.lang3.function.FailableConsumer;
 import org.junit.jupiter.api.Test;
 
-class LocksTest {
+public class LocksTest {
     private static final int NUMBER_OF_THREADS = 10;
 
     @Test
-    void testReadLock() throws Exception {
+    public void testReadLock() throws Exception {
         final long DELAY=3000;
         /** If our threads are running concurrently, then we expect to be faster
          * than running one after the other.
@@ -36,7 +36,7 @@ class LocksTest {
         runTest(DELAY, false, l -> assertTrue(l < NUMBER_OF_THREADS*DELAY));
     }
 
-    void testWriteLock() throws Exception {
+    public void testWriteLock() throws Exception {
         final long DELAY = 100;
         /** If our threads are running concurrently, then we expect to be no faster
          * than running one after the other.
@@ -83,6 +83,7 @@ class LocksTest {
             booleanArray[offset] = value;
         }
     }
+
     protected boolean someValueIsTrue(boolean[] booleanArray) {
         synchronized(booleanArray) {
             for (int i = 0;  i < booleanArray.length;  i++) {