getTestArgs() — spring-boot Function Reference
Architecture documentation for the getTestArgs() function in EnvVariablesTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 1c1c6387_f98a_7742_d83d_98eb3a59332e["getTestArgs()"] 854d81fc_028d_9d1d_31ed_95810e84a2fe["asArray()"] 854d81fc_028d_9d1d_31ed_95810e84a2fe -->|calls| 1c1c6387_f98a_7742_d83d_98eb3a59332e 82062684_2e00_c1e7_6940_c240e1744ea4["asMap()"] 82062684_2e00_c1e7_6940_c240e1744ea4 -->|calls| 1c1c6387_f98a_7742_d83d_98eb3a59332e style 1c1c6387_f98a_7742_d83d_98eb3a59332e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/test/java/org/springframework/boot/maven/EnvVariablesTests.java lines 52–59
private Map<String, String> getTestArgs() {
Map<String, String> args = new LinkedHashMap<>();
args.put("key", "My Value");
args.put("key1", " tt ");
args.put("key2", " ");
args.put("key3", null);
return args;
}
Domain
Subdomains
Called By
- asArray()
- asMap()
Source
Frequently Asked Questions
What does getTestArgs() do?
getTestArgs() is a function in the spring-boot codebase.
What calls getTestArgs()?
getTestArgs() is called by 2 function(s): asArray, asMap.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free