Home
last modified time | relevance | path

Searched refs:spouseFromBF (Results 1 – 1 of 1) sorted by relevance

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/context/annotation/configuration/
H A DScopingTests.java139 assertEquals(spouse.getName(), spouseFromBF.getName()); in testScopedProxyConfiguration()
141 assertNotSame(spouse, spouseFromBF); in testScopedProxyConfiguration()
149 assertSame(spouse.getName(), spouseFromBF.getName()); in testScopedProxyConfiguration()
150 assertNotSame(spouse, spouseFromBF); in testScopedProxyConfiguration()
154 assertSame(spouse.getName(), spouseFromBF.getName()); in testScopedProxyConfiguration()
175 assertNotSame(spouse, spouseFromBF); in testScopedProxyConfigurationWithClasses()
182 spouseFromBF = (TestBean) ctx.getBean(scopedBeanName); in testScopedProxyConfigurationWithClasses()
184 assertSame(spouse.getName(), spouseFromBF.getName()); in testScopedProxyConfigurationWithClasses()
185 assertNotSame(spouse, spouseFromBF); in testScopedProxyConfigurationWithClasses()
188 spouseFromBF = (TestBean) ctx.getBean(scopedBeanName); in testScopedProxyConfigurationWithClasses()
[all …]