Skip to content

Commit 08661f8

Browse files
committed
Test java class
1 parent cc9e4fd commit 08661f8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/isc/rabbitmq/Test.java

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package isc.rabbitmq;
2+
3+
public class Test {
4+
public static void main(String[] args) throws Exception {
5+
String host = "localhost";
6+
int port = -1;
7+
String user = "guest";
8+
String pass = "guest";
9+
String virtualHost = "/";
10+
String queue = "Tr1";
11+
int durable = 1;
12+
13+
API api = new API(host, port, user, pass, virtualHost, queue, durable);
14+
15+
16+
}
17+
}

0 commit comments

Comments
 (0)