Sort members.
diff --git a/src/test/java/org/apache/commons/lang3/FunctionsTest.java b/src/test/java/org/apache/commons/lang3/FunctionsTest.java
index 907f6e4..043f135 100644
--- a/src/test/java/org/apache/commons/lang3/FunctionsTest.java
+++ b/src/test/java/org/apache/commons/lang3/FunctionsTest.java
@@ -236,12 +236,6 @@ public void testObjLong(T object, long i) throws Throwable {
     }
 
     @Test
-    public void testConstructor() {
-        // We allow this, which must be an omission to make the ctor private.
-        new Functions();
-    }
-
-    @Test
     void testAcceptBiConsumer() {
         final IllegalStateException ise = new IllegalStateException();
         final Testable<?, ?> testable = new Testable(null);
@@ -699,6 +693,12 @@ void testCallable() {
     }
 
     @Test
+    public void testConstructor() {
+        // We allow this, which must be an omission to make the ctor private.
+        new Functions();
+    }
+
+    @Test
     public void testGetAsBooleanSupplier() {
         final IllegalStateException ise = new IllegalStateException();
         final Testable<?, ?> testable = new Testable<>(ise);