File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed
src/test/java/com/rabbitmq/client/test Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 24
24
25
25
public abstract class AbstractRMQTestSuite {
26
26
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
-
32
27
static {
33
28
Properties TESTS_PROPS = new Properties (System .getProperties ());
34
29
String make = System .getenv ("MAKE" );
@@ -86,10 +81,6 @@ public static boolean requiredProperties() {
86
81
return true ;
87
82
}
88
83
89
- public static boolean isUnderUmbrella () {
90
- return new File ("../../UMBRELLA.md" ).isFile ();
91
- }
92
-
93
84
public static boolean isSSLAvailable () {
94
85
String sslClientCertsDir = System .getProperty ("test-client-cert.path" );
95
86
String hostname = System .getProperty ("broker.hostname" );
Original file line number Diff line number Diff line change 72
72
ConnectionRecovery .class ,
73
73
ExceptionHandling .class ,
74
74
PerConsumerPrefetch .class ,
75
- DirectReplyTo .class
75
+ DirectReplyTo .class ,
76
+ ConsumerCount .class ,
77
+ BasicGet .class ,
78
+ Nack .class ,
79
+ ExceptionMessages .class
76
80
})
77
81
public class FunctionalTests {
78
82
Original file line number Diff line number Diff line change 37
37
Shutdown .class ,
38
38
BlockedConnection .class ,
39
39
ChannelLimitNegotiation .class ,
40
- LoopbackUsers .class
40
+ LoopbackUsers .class ,
41
+ XDeathHeaderGrowth .class ,
42
+ PriorityQueues .class ,
43
+
41
44
})
42
45
public class ServerTests {
43
46
You can’t perform that action at this time.
0 commit comments