Changeset 47 for trunk/src/test/java/omq/test/calculator/ServerTest.java
- Timestamp:
- 06/18/13 16:51:22 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/test/java/omq/test/calculator/ServerTest.java
r46 r47 2 2 3 3 import java.util.Properties; 4 5 import org.junit.Test; 4 6 5 7 import omq.common.broker.Broker; … … 8 10 9 11 public class ServerTest { 10 private static CalculatorImpl calc;11 private static CalculatorImpl calc2;12 12 13 public static void main(String[] args) throws Exception { 13 private CalculatorImpl calc; 14 private CalculatorImpl calc2; 15 16 @Test 17 public void serverTest() throws Exception { 14 18 Properties env = new Properties(); 15 19 env.setProperty(ParameterQueue.USER_NAME, "guest"); … … 35 39 36 40 System.out.println("Server started"); 41 42 Thread.sleep(60 * 60 * 1000); 37 43 } 38 44 }
Note: See TracChangeset
for help on using the changeset viewer.