20
20
21
21
package com .arangodb ;
22
22
23
- import static org .hamcrest .Matchers .anyOf ;
24
- import static org .hamcrest .Matchers .contains ;
25
- import static org .hamcrest .Matchers .empty ;
26
- import static org .hamcrest .Matchers .everyItem ;
27
- import static org .hamcrest .Matchers .greaterThan ;
28
- import static org .hamcrest .Matchers .hasItem ;
29
- import static org .hamcrest .Matchers .is ;
30
- import static org .hamcrest .Matchers .not ;
31
- import static org .hamcrest .Matchers .notNullValue ;
32
- import static org .junit .Assert .assertThat ;
33
- import static org .junit .Assert .fail ;
34
-
35
- import java .util .*;
36
-
37
- import org .hamcrest .Matcher ;
38
- import org .junit .Test ;
39
- import org .junit .runner .RunWith ;
40
- import org .junit .runners .Parameterized ;
41
- import org .junit .runners .Parameterized .Parameters ;
42
-
43
23
import com .arangodb .ArangoDB .Builder ;
44
- import com .arangodb .entity .ArangoDBVersion ;
45
- import com .arangodb .entity .LogEntity ;
46
- import com .arangodb .entity .LogLevel ;
47
- import com .arangodb .entity .LogLevelEntity ;
48
- import com .arangodb .entity .Permissions ;
49
- import com .arangodb .entity .UserEntity ;
24
+ import com .arangodb .entity .*;
50
25
import com .arangodb .model .LogOptions ;
51
26
import com .arangodb .model .LogOptions .SortOrder ;
52
27
import com .arangodb .model .UserCreateOptions ;
55
30
import com .arangodb .velocystream .Request ;
56
31
import com .arangodb .velocystream .RequestType ;
57
32
import com .arangodb .velocystream .Response ;
33
+ import org .hamcrest .Matcher ;
34
+ import org .junit .Test ;
35
+ import org .junit .runner .RunWith ;
36
+ import org .junit .runners .Parameterized ;
37
+ import org .junit .runners .Parameterized .Parameters ;
38
+
39
+ import java .util .*;
40
+
41
+ import static org .hamcrest .Matchers .*;
42
+ import static org .junit .Assert .assertThat ;
43
+ import static org .junit .Assert .fail ;
58
44
59
45
/**
60
46
* @author Mark Vollmary
@@ -66,7 +52,7 @@ public class ArangoDBTest {
66
52
@ Parameters
67
53
public static Collection <ArangoDB .Builder > builders () {
68
54
return Arrays .asList (//
69
- new ArangoDB .Builder ().useProtocol (Protocol .VST ), //
55
+ // new ArangoDB.Builder().useProtocol(Protocol.VST), //
70
56
new ArangoDB .Builder ().useProtocol (Protocol .HTTP_JSON ), //
71
57
new ArangoDB .Builder ().useProtocol (Protocol .HTTP_VPACK ) //
72
58
);
0 commit comments