polishing fixed test in GatewayRequestReplyTests.timedOutGateway()

This commit is contained in:
Oleg Zhurakousky
2011-02-01 17:00:11 -05:00
parent 734c3e504a
commit 84543c9688

View File

@@ -16,6 +16,7 @@
package org.springframework.integration.gateway;
import static junit.framework.Assert.assertNull;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
@@ -56,7 +57,7 @@ public class GatewayRequiresReplyTests {
public void timedOutGateway() {
TestService gateway = (TestService) applicationContext.getBean("timeoutGateway");
String result = gateway.test("hello");
System.out.println("Result: " + result);
assertNull(result);
}