@@ -64,13 +64,21 @@ public static void shutdown() throws InterruptedException, ExecutionException {
6464 arangoDB = null ;
6565 }
6666
67+ protected static boolean isAtLeastVersion (final ArangoDBAsync arangoDB , final int major , final int minor , final int patch )
68+ throws InterruptedException , ExecutionException {
69+ return com .arangodb .util .TestUtils .isAtLeastVersion (arangoDB .getVersion ().get ().getVersion (), major , minor , patch );
70+ }
6771 protected static boolean isAtLeastVersion (final ArangoDBAsync arangoDB , final int major , final int minor )
6872 throws InterruptedException , ExecutionException {
69- return com .arangodb .util .TestUtils .isAtLeastVersion (arangoDB .getVersion ().get ().getVersion (), major , minor , 0 );
73+ return isAtLeastVersion (arangoDB , major , minor , 0 );
74+ }
75+
76+ protected boolean isAtLeastVersion (final int major , final int minor , final int patch ) throws InterruptedException , ExecutionException {
77+ return isAtLeastVersion (arangoDB , major , minor , patch );
7078 }
7179
7280 protected boolean isAtLeastVersion (final int major , final int minor ) throws InterruptedException , ExecutionException {
73- return isAtLeastVersion (arangoDB , major , minor );
81+ return isAtLeastVersion (major , minor , 0 );
7482 }
7583
7684 boolean isStorageEngine (ArangoDBEngine .StorageEngineName name ) throws ExecutionException , InterruptedException {
0 commit comments