Phillip Webb
|
2f815a907a
|
Migrate existing tests from deprecated package
Update the existing tests to use the relocated `spring-boot-test`
classes. Restructuring was achieved using the following command:
find . -type f -name '*.java' -exec sed -i '' \
-e s/org.springframework.boot.test.ConfigFileApplicationContextInitializer/\
org.springframework.boot.test.context.ConfigFileApplicationContextInitializer/g \
-e s/org.springframework.boot.test.EnvironmentTestUtils/\
org.springframework.boot.test.util.EnvironmentTestUtils/g \
-e s/org.springframework.boot.test.IntegrationTest/\
org.springframework.boot.test.context.IntegrationTest/g \
-e s/org.springframework.boot.test.IntegrationTestPropertiesListener/\
org.springframework.boot.test.context.IntegrationTestPropertiesListener/g \
-e s/org.springframework.boot.test.OutputCapture/\
org.springframework.boot.test.rule.OutputCapture/g \
-e s/org.springframework.boot.test.SpringApplicationConfiguration/\
org.springframework.boot.test.context.SpringApplicationConfiguration/g \
-e s/org.springframework.boot.test.SpringApplicationContextLoader/\
org.springframework.boot.test.context.SpringApplicationContextLoader/g \
-e s/org.springframework.boot.test.SpringBootMockServletContext/\
org.springframework.boot.test.mock.web.SpringBootMockServletContext/g \
-e s/org.springframework.boot.test.TestRestTemplate/\
org.springframework.boot.test.web.client.TestRestTemplate/g \
-e s/org.springframework.boot.test.WebIntegrationTest/\
org.springframework.boot.test.context.web.WebIntegrationTest/g {} \;
See gh-5293
|
2016-03-23 22:17:50 -07:00 |
|
Andy Wilkinson
|
44ddfcc7fa
|
Upgrade copyright headers of all files changed in 2016
|
2016-02-25 12:09:42 +00:00 |
|
Phillip Webb
|
1cc1fc6431
|
Use AssertJ in spring-boot-samples
See gh-5083
|
2016-02-06 15:51:26 -08:00 |
|
Phillip Webb
|
634bb770b2
|
Organize imports with new settings
See gh-4234
|
2015-10-19 12:58:34 -07:00 |
|
Phillip Webb
|
891dd5a0f6
|
Polish
|
2015-08-03 11:03:48 -07:00 |
|
Stephane Nicoll
|
80754d5cc2
|
Polish
Closes gh-3534
|
2015-07-23 11:46:32 +02:00 |
|
Lucas Saldanha
|
bf303b02f7
|
Add configuration properties validation sample
Create a new project sample that demonstrate the usage of
@ConfigurationProperties with configurationPropertiesValidator.
Fixes gh-3513
|
2015-07-23 11:42:55 +02:00 |
|