Skip to content

Commit 027b46b

Browse files
author
michele
committed
disabled VST tests
1 parent a2c1f8e commit 027b46b

File tree

2 files changed

+15
-30
lines changed

2 files changed

+15
-30
lines changed

src/test/java/com/arangodb/ArangoDBTest.java

Lines changed: 13 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,8 @@
2020

2121
package com.arangodb;
2222

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-
4323
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.*;
5025
import com.arangodb.model.LogOptions;
5126
import com.arangodb.model.LogOptions.SortOrder;
5227
import com.arangodb.model.UserCreateOptions;
@@ -55,6 +30,17 @@
5530
import com.arangodb.velocystream.Request;
5631
import com.arangodb.velocystream.RequestType;
5732
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;
5844

5945
/**
6046
* @author Mark Vollmary
@@ -66,7 +52,7 @@ public class ArangoDBTest {
6652
@Parameters
6753
public static Collection<ArangoDB.Builder> builders() {
6854
return Arrays.asList(//
69-
new ArangoDB.Builder().useProtocol(Protocol.VST), //
55+
// new ArangoDB.Builder().useProtocol(Protocol.VST), //
7056
new ArangoDB.Builder().useProtocol(Protocol.HTTP_JSON), //
7157
new ArangoDB.Builder().useProtocol(Protocol.HTTP_VPACK) //
7258
);

src/test/java/com/arangodb/BaseTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ public abstract class BaseTest {
3939
public static Collection<ArangoDB.Builder> builders() {
4040
return Arrays.asList(//
4141
// new ArangoDB.Builder().useProtocol(Protocol.VST), //
42-
new ArangoDB.Builder().useProtocol(Protocol.HTTP_JSON)
43-
// , //
44-
// new ArangoDB.Builder().useProtocol(Protocol.HTTP_VPACK) //
42+
new ArangoDB.Builder().useProtocol(Protocol.HTTP_JSON), //
43+
new ArangoDB.Builder().useProtocol(Protocol.HTTP_VPACK) //
4544
);
4645
}
4746

0 commit comments

Comments
 (0)