Polishing
This commit is contained in:
@@ -74,7 +74,7 @@ import static org.junit.Assert.*;
|
|||||||
*/
|
*/
|
||||||
public class HandlersBeanDefinitionParserTests {
|
public class HandlersBeanDefinitionParserTests {
|
||||||
|
|
||||||
private GenericWebApplicationContext appContext = new GenericWebApplicationContext();
|
private final GenericWebApplicationContext appContext = new GenericWebApplicationContext();
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import org.hamcrest.Matchers;
|
import org.hamcrest.Matchers;
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import org.springframework.beans.DirectFieldAccessor;
|
import org.springframework.beans.DirectFieldAccessor;
|
||||||
@@ -99,13 +98,7 @@ import static org.junit.Assert.*;
|
|||||||
*/
|
*/
|
||||||
public class MessageBrokerBeanDefinitionParserTests {
|
public class MessageBrokerBeanDefinitionParserTests {
|
||||||
|
|
||||||
private GenericWebApplicationContext appContext;
|
private final GenericWebApplicationContext appContext = new GenericWebApplicationContext();
|
||||||
|
|
||||||
|
|
||||||
@Before
|
|
||||||
public void setup() {
|
|
||||||
this.appContext = new GenericWebApplicationContext();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@@ -231,7 +224,7 @@ public class MessageBrokerBeanDefinitionParserTests {
|
|||||||
assertNotNull(this.appContext.getBean("webSocketScopeConfigurer", CustomScopeConfigurer.class));
|
assertNotNull(this.appContext.getBean("webSocketScopeConfigurer", CustomScopeConfigurer.class));
|
||||||
|
|
||||||
DirectFieldAccessor subscriptionRegistryAccessor = new DirectFieldAccessor(brokerMessageHandler.getSubscriptionRegistry());
|
DirectFieldAccessor subscriptionRegistryAccessor = new DirectFieldAccessor(brokerMessageHandler.getSubscriptionRegistry());
|
||||||
String pathSeparator = (String)new DirectFieldAccessor(subscriptionRegistryAccessor.getPropertyValue("pathMatcher")).getPropertyValue("pathSeparator");
|
String pathSeparator = (String) new DirectFieldAccessor(subscriptionRegistryAccessor.getPropertyValue("pathMatcher")).getPropertyValue("pathSeparator");
|
||||||
assertEquals(".", pathSeparator);
|
assertEquals(".", pathSeparator);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -355,7 +348,7 @@ public class MessageBrokerBeanDefinitionParserTests {
|
|||||||
assertEquals(MimeTypeUtils.APPLICATION_JSON, ((DefaultContentTypeResolver) resolver).getDefaultMimeType());
|
assertEquals(MimeTypeUtils.APPLICATION_JSON, ((DefaultContentTypeResolver) resolver).getDefaultMimeType());
|
||||||
|
|
||||||
DirectFieldAccessor handlerAccessor = new DirectFieldAccessor(annotationMethodMessageHandler);
|
DirectFieldAccessor handlerAccessor = new DirectFieldAccessor(annotationMethodMessageHandler);
|
||||||
String pathSeparator = (String)new DirectFieldAccessor(handlerAccessor.getPropertyValue("pathMatcher")).getPropertyValue("pathSeparator");
|
String pathSeparator = (String) new DirectFieldAccessor(handlerAccessor.getPropertyValue("pathMatcher")).getPropertyValue("pathSeparator");
|
||||||
assertEquals(".", pathSeparator);
|
assertEquals(".", pathSeparator);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user