package com.aoji.cn;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class HelloWorldTest {
@Test
public void testHello(){
ApplicationContext cxt=new ClassPathXmlApplicationContext("applicationContext.xml");
HelloWorld helloWorld= (HelloWorld) cxt.getBean("helloWorld");
helloWorld.hello();
}
}