Initialize JNDI to fix failing Environment test

Issue: SPR-12223
master
Phillip Webb 10 years ago
parent c41ea96177
commit 2667956a30
  1. 14
      spring-web/src/test/java/org/springframework/web/context/support/StandardServletEnvironmentTests.java

@ -16,15 +16,17 @@
package org.springframework.web.context.support;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import javax.naming.NamingException;
import org.junit.Test;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.core.env.StandardEnvironment;
import org.springframework.core.env.MutablePropertySources;
import org.springframework.core.env.PropertySource;
import org.springframework.core.env.StandardEnvironment;
import org.springframework.tests.mock.jndi.SimpleNamingContextBuilder;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
/**
* Unit tests for {@link StandardServletEnvironment}.
@ -35,7 +37,9 @@ import org.springframework.core.env.PropertySource;
public class StandardServletEnvironmentTests {
@Test
public void propertySourceOrder() {
public void propertySourceOrder() throws Exception {
SimpleNamingContextBuilder.emptyActivatedContextBuilder();
ConfigurableEnvironment env = new StandardServletEnvironment();
MutablePropertySources sources = env.getPropertySources();

Loading…
Cancel
Save