Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
ebfd86ea
Commit
ebfd86ea
authored
Nov 06, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish contribution
Closes gh-7326
parent
e8b0a648
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
AutoConfigureCache.java
...work/boot/test/autoconfigure/core/AutoConfigureCache.java
+2
-2
AutoConfigureTestDatabase.java
...test/autoconfigure/orm/jpa/AutoConfigureTestDatabase.java
+2
-2
AutoConfigureTestEntityManager.java
...autoconfigure/orm/jpa/AutoConfigureTestEntityManager.java
+2
-2
AutoConfigureRestDocs.java
...ot/test/autoconfigure/restdocs/AutoConfigureRestDocs.java
+2
-2
AutoConfigureMockMvc.java
.../test/autoconfigure/web/servlet/AutoConfigureMockMvc.java
+2
-2
No files found.
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/core/AutoConfigureCache.java
View file @
ebfd86ea
...
@@ -36,10 +36,10 @@ import org.springframework.cache.support.NoOpCacheManager;
...
@@ -36,10 +36,10 @@ import org.springframework.cache.support.NoOpCacheManager;
* @author Phillip Webb
* @author Phillip Webb
* @since 1.4.0
* @since 1.4.0
*/
*/
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Documented
@Documented
@Inherited
@Inherited
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Target
(
ElementType
.
TYPE
)
@ImportAutoConfiguration
@ImportAutoConfiguration
public
@interface
AutoConfigureCache
{
public
@interface
AutoConfigureCache
{
...
...
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/orm/jpa/AutoConfigureTestDatabase.java
View file @
ebfd86ea
...
@@ -36,10 +36,10 @@ import org.springframework.boot.test.autoconfigure.properties.PropertyMapping;
...
@@ -36,10 +36,10 @@ import org.springframework.boot.test.autoconfigure.properties.PropertyMapping;
* @author Phillip Webb
* @author Phillip Webb
* @see TestDatabaseAutoConfiguration
* @see TestDatabaseAutoConfiguration
*/
*/
@Target
({
ElementType
.
TYPE
,
ElementType
.
METHOD
})
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Documented
@Documented
@Inherited
@Inherited
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Target
({
ElementType
.
TYPE
,
ElementType
.
METHOD
})
@ImportAutoConfiguration
@ImportAutoConfiguration
@PropertyMapping
(
"spring.test.database"
)
@PropertyMapping
(
"spring.test.database"
)
public
@interface
AutoConfigureTestDatabase
{
public
@interface
AutoConfigureTestDatabase
{
...
...
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/orm/jpa/AutoConfigureTestEntityManager.java
View file @
ebfd86ea
...
@@ -32,10 +32,10 @@ import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
...
@@ -32,10 +32,10 @@ import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
* @author Phillip Webb
* @author Phillip Webb
* @see TestEntityManagerAutoConfiguration
* @see TestEntityManagerAutoConfiguration
*/
*/
@Target
({
ElementType
.
TYPE
,
ElementType
.
METHOD
})
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Documented
@Documented
@Inherited
@Inherited
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Target
({
ElementType
.
TYPE
,
ElementType
.
METHOD
})
@ImportAutoConfiguration
@ImportAutoConfiguration
public
@interface
AutoConfigureTestEntityManager
{
public
@interface
AutoConfigureTestEntityManager
{
...
...
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/restdocs/AutoConfigureRestDocs.java
View file @
ebfd86ea
...
@@ -39,10 +39,10 @@ import org.springframework.core.annotation.AliasFor;
...
@@ -39,10 +39,10 @@ import org.springframework.core.annotation.AliasFor;
* @see RestDocsAutoConfiguration
* @see RestDocsAutoConfiguration
* @see RestDocsMockMvcConfigurationCustomizer
* @see RestDocsMockMvcConfigurationCustomizer
*/
*/
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Documented
@Documented
@Inherited
@Inherited
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Target
(
ElementType
.
TYPE
)
@ImportAutoConfiguration
@ImportAutoConfiguration
@Import
(
RestDocumentationContextProviderRegistrar
.
class
)
@Import
(
RestDocumentationContextProviderRegistrar
.
class
)
@PropertyMapping
(
"spring.test.restdocs"
)
@PropertyMapping
(
"spring.test.restdocs"
)
...
...
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/web/servlet/AutoConfigureMockMvc.java
View file @
ebfd86ea
...
@@ -41,10 +41,10 @@ import org.springframework.test.web.servlet.MvcResult;
...
@@ -41,10 +41,10 @@ import org.springframework.test.web.servlet.MvcResult;
* @see MockMvcAutoConfiguration
* @see MockMvcAutoConfiguration
* @see SpringBootMockMvcBuilderCustomizer
* @see SpringBootMockMvcBuilderCustomizer
*/
*/
@Target
({
ElementType
.
TYPE
,
ElementType
.
METHOD
})
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Documented
@Documented
@Inherited
@Inherited
@Retention
(
RetentionPolicy
.
RUNTIME
)
@Target
({
ElementType
.
TYPE
,
ElementType
.
METHOD
})
@ImportAutoConfiguration
@ImportAutoConfiguration
@PropertyMapping
(
"spring.test.mockmvc"
)
@PropertyMapping
(
"spring.test.mockmvc"
)
public
@interface
AutoConfigureMockMvc
{
public
@interface
AutoConfigureMockMvc
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment