negativeOuterPositiveInnerBean() — spring-boot Function Reference
Architecture documentation for the negativeOuterPositiveInnerBean() function in ConditionEvaluationReportTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD f37bb833_e005_22de_b50f_905f761fcb2c["negativeOuterPositiveInnerBean()"] dc1b61d5_0bcc_7490_7eb7_589ee66d8a7f["negativeOuterPositiveInnerBean()"] dc1b61d5_0bcc_7490_7eb7_589ee66d8a7f -->|calls| f37bb833_e005_22de_b50f_905f761fcb2c dc1b61d5_0bcc_7490_7eb7_589ee66d8a7f["negativeOuterPositiveInnerBean()"] f37bb833_e005_22de_b50f_905f761fcb2c -->|calls| dc1b61d5_0bcc_7490_7eb7_589ee66d8a7f 3dc28cf2_6ef1_ebd4_4b32_304c07713e04["get()"] f37bb833_e005_22de_b50f_905f761fcb2c -->|calls| 3dc28cf2_6ef1_ebd4_4b32_304c07713e04 style f37bb833_e005_22de_b50f_905f761fcb2c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/condition/ConditionEvaluationReportTests.java lines 213–230
@Test
void negativeOuterPositiveInnerBean() {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
TestPropertyValues.of("test.present=true").applyTo(context);
context.register(NegativeOuterConfig.class);
context.refresh();
ConditionEvaluationReport report = ConditionEvaluationReport.get(context.getBeanFactory());
Map<String, ConditionAndOutcomes> sourceOutcomes = report.getConditionAndOutcomesBySource();
assertThat(context.containsBean("negativeOuterPositiveInnerBean")).isFalse();
String negativeConfig = NegativeOuterConfig.class.getName();
ConditionAndOutcomes negativeOutcome = sourceOutcomes.get(negativeConfig);
assertThat(negativeOutcome).isNotNull();
assertThat(negativeOutcome.isFullMatch()).isFalse();
String positiveConfig = NegativeOuterConfig.PositiveInnerConfig.class.getName();
ConditionAndOutcomes positiveOutcome = sourceOutcomes.get(positiveConfig);
assertThat(positiveOutcome).isNotNull();
assertThat(positiveOutcome.isFullMatch()).isFalse();
}
Domain
Subdomains
Calls
- get()
- negativeOuterPositiveInnerBean()
Called By
- negativeOuterPositiveInnerBean()
Source
Frequently Asked Questions
What does negativeOuterPositiveInnerBean() do?
negativeOuterPositiveInnerBean() is a function in the spring-boot codebase.
What does negativeOuterPositiveInnerBean() call?
negativeOuterPositiveInnerBean() calls 2 function(s): get, negativeOuterPositiveInnerBean.
What calls negativeOuterPositiveInnerBean()?
negativeOuterPositiveInnerBean() is called by 1 function(s): negativeOuterPositiveInnerBean.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free