You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
389 B
16 lines
389 B
package com.platform.test;
|
|
|
|
import org.springframework.context.ApplicationContext;
|
|
import org.springframework.context.support.FileSystemXmlApplicationContext;
|
|
|
|
public class SMBasedTest {
|
|
|
|
public ApplicationContext applicationContext;
|
|
|
|
public SMBasedTest() {
|
|
applicationContext = new FileSystemXmlApplicationContext(
|
|
"test/spring-applicationContext-test.xml");
|
|
}
|
|
|
|
}
|