junit实现测试类(在Spring2.5中)

第一步:

创建JAVA项目,也可以是Web项目,加入Spring2.5的Core Lib

 

创建注入类(测试用)

 

修改applicationContext.xml文件

 

内容如下:

 

注入类:

package nell;

public class Animal {
	private String one;
	private String twe;

	public String getOne() {
		return one;
	}

	public void setOne(String one) {
		this.one = one;
	}

	public String getTwe() {
		return twe;
	}

	public void setTwe(String twe) {
		this.twe = twe;
	}
}

 

applicationContext.xml文件

 

<?xml version="1.0" encoding="UTF-8"?>
<beans
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="animal" class="nell.Animal">
	<property name="one" value="123"/>
	<property name="twe" value="小到堆"/>
</bean>

</beans>

 

测试类

 

package nell;

import static org.junit.Assert.*;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestE {
	@Test
	public void haha(){
		ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
		Animal aa=(Animal)ac.getBean("animal");
		assertEquals("123",aa.getOne());
		assertEquals("小到堆",aa.getTwe());
	}
}

 

注意点:

@Test

在上面打入@Test,如果出现报错,右键加入Jar包,在MyEclipse Lib下面有个Spring2.5 Testing Support Lib包

因为Spring已集成

好了,把Junit运用了,assertEquals("123",aa.getOne());做了比较;

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值