Polish formatting

This commit is contained in:
Phillip Webb
2016-12-19 10:30:48 -08:00
parent e578ace7d7
commit bd74c3d327
346 changed files with 578 additions and 53 deletions

View File

@@ -26,4 +26,5 @@ package org.springframework.boot.test;
*/
@Deprecated
public class OutputCapture extends org.springframework.boot.test.rule.OutputCapture {
}

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

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

View File

@@ -36,7 +36,6 @@ import static org.assertj.core.api.Assertions.assertThat;
* Tests for {@link WebAppConfiguration} using {@link SpringApplicationContextLoader} with
* a plain mock Servlet environment.
*
*
* @author Andy Wilkinson
*/
@RunWith(SpringJUnit4ClassRunner.class)

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);
}
}