Skip to content

Commit

Permalink
Test java class
Browse files Browse the repository at this point in the history
  • Loading branch information
eduard93 committed Jan 22, 2018
1 parent cc9e4fd commit 08661f8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/isc/rabbitmq/Test.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package isc.rabbitmq;

public class Test {
public static void main(String[] args) throws Exception {
String host = "localhost";
int port = -1;
String user = "guest";
String pass = "guest";
String virtualHost = "/";
String queue = "Tr1";
int durable = 1;

API api = new API(host, port, user, pass, virtualHost, queue, durable);


}
}

0 comments on commit 08661f8

Please sign in to comment.