refactoring .testsuite .aop.aspectj tests in preparation for migration to .context

This commit is contained in:
Chris Beams 2008-12-19 02:59:46 +00:00
parent 6f91ffac62
commit 81efa4d23c
4 changed files with 4 additions and 2 deletions

View File

@ -43,7 +43,8 @@ public final class ProceedTests {
@Before
public void setUp() {
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("proceedTests_.xml", getClass());
ClassPathXmlApplicationContext ctx =
new ClassPathXmlApplicationContext(getClass().getSimpleName() + ".xml", getClass());
testBean = (SimpleBean) ctx.getBean("testBean");
firstTestAspect = (ProceedTestingAspect) ctx.getBean("firstTestAspect");
secondTestAspect = (ProceedTestingAspect) ctx.getBean("secondTestAspect");

View File

@ -42,7 +42,8 @@ public final class TargetPointcutSelectionTests {
@Before
public void setUp() {
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("targetPointcutSelectionTests_.xml", getClass());
ClassPathXmlApplicationContext ctx =
new ClassPathXmlApplicationContext(getClass().getSimpleName() + ".xml", getClass());
testImpl1 = (TestInterface) ctx.getBean("testImpl1");
testImpl2 = (TestInterface) ctx.getBean("testImpl2");
testAspectForTestImpl1 = (TestAspect) ctx.getBean("testAspectForTestImpl1");