spring_reference/IV. Spring Boot features/35.4.2. EnvironmentTestUtil...

6 lines
283 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

### 35.4.2. EnvironmentTestUtils
EnvironmentTestUtils允许你快速添加属性到一个ConfigurableEnvironment或ConfigurableApplicationContext。只需简单的使用key=value字符串调用它
```java
EnvironmentTestUtils.addEnvironment(env, "org=Spring", "name=Boot");