01: /*
02: * Created on 22 Jun 2007
03: */
04: package uk.org.ponder.rsf.test;
05:
06: import uk.org.ponder.rsac.test.AbstractRSACTests;
07:
08: public class PlainRSFTests extends AbstractRSACTests {
09:
10: protected String[] getConfigLocations() {
11: return new String[] { "classpath:conf/rsf-config.xml",
12: "classpath:conf/blank-applicationContext.xml",
13: "classpath:uk/org/ponder/rsf/test/sitemap/sitemap-context.xml" };
14: }
15:
16: public String[] getRequestConfigLocations() {
17: return new String[] {
18: "classpath:conf/rsf-requestscope-config.xml",
19: "classpath:conf/blank-requestContext.xml" };
20: }
21: }
|