refactoring .testsuite .aop.aspectj tests in preparation for migration to .context
This commit is contained in:
parent
6f91ffac62
commit
81efa4d23c
|
|
@ -43,7 +43,8 @@ public final class ProceedTests {
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("proceedTests_.xml", getClass());
|
ClassPathXmlApplicationContext ctx =
|
||||||
|
new ClassPathXmlApplicationContext(getClass().getSimpleName() + ".xml", getClass());
|
||||||
testBean = (SimpleBean) ctx.getBean("testBean");
|
testBean = (SimpleBean) ctx.getBean("testBean");
|
||||||
firstTestAspect = (ProceedTestingAspect) ctx.getBean("firstTestAspect");
|
firstTestAspect = (ProceedTestingAspect) ctx.getBean("firstTestAspect");
|
||||||
secondTestAspect = (ProceedTestingAspect) ctx.getBean("secondTestAspect");
|
secondTestAspect = (ProceedTestingAspect) ctx.getBean("secondTestAspect");
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,8 @@ public final class TargetPointcutSelectionTests {
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("targetPointcutSelectionTests_.xml", getClass());
|
ClassPathXmlApplicationContext ctx =
|
||||||
|
new ClassPathXmlApplicationContext(getClass().getSimpleName() + ".xml", getClass());
|
||||||
testImpl1 = (TestInterface) ctx.getBean("testImpl1");
|
testImpl1 = (TestInterface) ctx.getBean("testImpl1");
|
||||||
testImpl2 = (TestInterface) ctx.getBean("testImpl2");
|
testImpl2 = (TestInterface) ctx.getBean("testImpl2");
|
||||||
testAspectForTestImpl1 = (TestAspect) ctx.getBean("testAspectForTestImpl1");
|
testAspectForTestImpl1 = (TestAspect) ctx.getBean("testAspectForTestImpl1");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue