Remove deprecated SpringBootContextLoader#getArgs()
See gh-24550
This commit is contained in:
committed by
Stephane Nicoll
parent
2c0bfb7674
commit
fb207f73e7
@@ -119,7 +119,8 @@ public class SpringBootContextLoader extends AbstractContextLoader {
|
||||
application.setWebApplicationType(WebApplicationType.NONE);
|
||||
}
|
||||
application.setInitializers(initializers);
|
||||
return application.run(getArgs(config));
|
||||
String[] args = SpringBootTestArgs.get(config.getContextCustomizers());
|
||||
return application.run(args);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -140,19 +141,6 @@ public class SpringBootContextLoader extends AbstractContextLoader {
|
||||
return new StandardEnvironment();
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the application arguments to use. If no arguments are available, return an
|
||||
* empty array.
|
||||
* @param config the source context configuration
|
||||
* @return the application arguments to use
|
||||
* @deprecated since 2.2.7
|
||||
* @see SpringApplication#run(String...)
|
||||
*/
|
||||
@Deprecated
|
||||
protected String[] getArgs(MergedContextConfiguration config) {
|
||||
return SpringBootTestArgs.get(config.getContextCustomizers());
|
||||
}
|
||||
|
||||
private void setActiveProfiles(ConfigurableEnvironment environment, String[] profiles) {
|
||||
environment.setActiveProfiles(profiles);
|
||||
// Also add as properties to override any application.properties
|
||||
|
||||
Reference in New Issue
Block a user