8000 Add tests to the suites · CassOnMars/rabbitmq-java-client@4adab2a · GitHub
[go: up one dir, main page]

Skip to content

C 8000 ommit 4adab2a

Browse files
committed
Add tests to the suites
Fixes rabbitmq#174
1 parent 6c1f494 commit 4adab2a

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

src/test/java/com/rabbitmq/client/test/AbstractRMQTestSuite.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@
2424

2525
public abstract class AbstractRMQTestSuite {
2626

27-
private static final String DEFAULT_SSL_HOSTNAME = "localhost";
28-
private static final int DEFAULT_SSL_PORT = 5671;
29-
30-
private static boolean buildSSLPropertiesFound = false;
31-
3227
static {
3328
Properties TESTS_PROPS = new Properties(System.getProperties());
3429
String make = System.getenv("MAKE");
@@ -86,10 +81,6 @@ public static boolean requiredProperties() {
8681
return true;
8782
}
8883

89-
public static boolean isUnderUmbrella() {
90-
return new File("../../UMBRELLA.md").isFile();
91-
}
92-
9384
public static boolean isSSLAvailable() {
9485
String sslClientCertsDir = System.getProperty("test-client-cert.path");
9586
String hostname = System.getProperty("broker.hostname");

src/test/java/com/rabbitmq/client/test/functional/FunctionalTests.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@
7272
ConnectionRecovery.class,
7373
ExceptionHandling.class,
7474
PerConsumerPrefetch.class,
75-
DirectReplyTo.class
75+
DirectReplyTo.class,
76+
ConsumerCount.class,
77+
BasicGet.class,
78+
Nack.class,
79+
ExceptionMessages.class
7680
})
7781
public class FunctionalTests {
7882

src/test/java/com/rabbitmq/client/test/server/ServerTests.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@
3737
Shutdown.class,
3838
BlockedConnection.class,
3939
ChannelLimitNegotiation.class,
40-
LoopbackUsers.class
40+
LoopbackUsers.class,
41+
XDeathHeaderGrowth.class,
42+
PriorityQueues.class,
43+
4144
})
4245
public class ServerTests {
4346

0 commit comments

Comments
 (0)
0