@@ -64,13 +64,21 @@ public static void shutdown() throws InterruptedException, ExecutionException {
64
64
arangoDB = null ;
65
65
}
66
66
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
+ }
67
71
protected static boolean isAtLeastVersion (final ArangoDBAsync arangoDB , final int major , final int minor )
68
72
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 );
70
78
}
71
79
72
80
protected boolean isAtLeastVersion (final int major , final int minor ) throws InterruptedException , ExecutionException {
73
- return isAtLeastVersion (arangoDB , major , minor );
81
+ return isAtLeastVersion (major , minor , 0 );
74
82
}
75
83
76
84
boolean isStorageEngine (ArangoDBEngine .StorageEngineName name ) throws ExecutionException , InterruptedException {
0 commit comments