Formatting

This commit is contained in:
Phillip Webb
2016-04-24 22:54:27 -07:00
parent 79922360e1
commit 93382648ab
25 changed files with 58 additions and 57 deletions

View File

@@ -26,9 +26,9 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.TypeExcludeFilter;
/**
* Annotation that can be on tests to define a set of {@link TypeExcludeFilter} classes that
* should be applied to {@link SpringBootApplication @SpringBootApplication} component
* scanning.
* Annotation that can be on tests to define a set of {@link TypeExcludeFilter} classes
* that should be applied to {@link SpringBootApplication @SpringBootApplication}
* component scanning.
*
* @author Phillip Webb
* @since 1.4.0

View File

@@ -25,8 +25,8 @@ import java.lang.annotation.Target;
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
/**
* Annotation that can be applied to a test class to enable
* auto-configuration of a {@link TestEntityManager}.
* Annotation that can be applied to a test class to enable auto-configuration of a
* {@link TestEntityManager}.
*
* @author Phillip Webb
* @see TestEntityManagerAutoConfiguration

View File

@@ -47,9 +47,9 @@ import org.springframework.transaction.annotation.Transactional;
* override these settings.
* <p>
* If you are looking to load your full application configuration, but use an embedded
* database, you should consider {@link SpringBootTest @SpringBootTest}
* combined with {@link AutoConfigureTestDatabase @AutoConfigureTestDatabase} rather than
* this annotation.
* database, you should consider {@link SpringBootTest @SpringBootTest} combined with
* {@link AutoConfigureTestDatabase @AutoConfigureTestDatabase} rather than this
* annotation.
*
* @author Phillip Webb
* @see AutoConfigureTestDatabase