Merge branch '1.4.x' into 1.5.x

This commit is contained in:
Phillip Webb
2016-12-19 12:36:57 -08:00
330 changed files with 554 additions and 47 deletions

View File

@@ -276,6 +276,7 @@ class ImportsContextCustomizer implements ContextCustomizer {
return (obj != null && getClass().equals(obj.getClass())
&& this.annotations.equals(((ContextCustomizerKey) obj).annotations));
}
}
/**

View File

@@ -100,4 +100,5 @@ final class SpringBootConfigurationFinder {
}
}
}

View File

@@ -38,8 +38,8 @@ import org.springframework.web.context.WebApplicationContext;
/**
* Annotation that can be specified on a test class that runs Spring Boot based tests.
* Provides the following features over and above the regular
* <em>Spring TestContext Framework</em>:
* Provides the following features over and above the regular <em>Spring TestContext
* Framework</em>:
* <ul>
* <li>Uses {@link SpringBootContextLoader} as the default {@link ContextLoader} when no
* specific {@link ContextConfiguration#loader() @ContextConfiguration(loader=...)} is

View File

@@ -345,6 +345,7 @@ public abstract class AbstractJsonMarshalTester<T> {
/**
* Utility class used to support field initialization. Used by subclasses to support
* {@code initFields}.
*
* @param <M> The marshaller type
*/
protected static abstract class FieldInitializer<M> {

View File

@@ -125,4 +125,5 @@ public class GsonTester<T> extends AbstractJsonMarshalTester<T> {
}
}
}

View File

@@ -110,4 +110,5 @@ public class SpringBootMockServletContext extends MockServletContext {
}
return resource;
}
}

View File

@@ -50,4 +50,5 @@ public class ConfigFileApplicationContextInitializerTests {
public static class Config {
}
}

View File

@@ -78,6 +78,7 @@ public class MockBeanWithAsyncInterfaceMethodIntegrationTests {
public MyService myService(Transformer transformer) {
return new MyService(transformer);
}
}
}

View File

@@ -201,4 +201,5 @@ public class TestRestTemplateTests {
.isEqualTo(password);
}
}