Spring Junit4 测试Web应用程序

1、环境搭建很简单,只需要将这这两个jar包(org.springframework.test-3.0.3.RELEASE.jar和junit-4.8.1.jar),和Spring的公用包以及其它的Jar包一起加入到项目中即可。

2、使用时,编写的测试类,需要继承类AbstractJUnit4SpringContextTests,同时需要指定Spring配置文件的路径,请看示例代码:

@ContextConfiguration(locations = { "/spring/applicationContext-memcached.xml" })
public class SpyMemcachedClientTest extends AbstractJUnit4SpringContextTests{

@Autowired
 private JoyMemcachedClient joyMemcachedClient;

@Test
 public void normal() throws InterruptedException {

String key = "consumer:1";
  String value = "admin";

joyMemcachedClient.set(key, 2, value);
  String result = joyMemcachedClient.get(key);
  assertEquals(value, result);

//Thread.sleep(3000);
  result = joyMemcachedClient.get(key);
  assertNotNull(result);
 
  joyMemcachedClient.delete(key);
  //这么写会抛异常,无法自动转型
  result = joyMemcachedClient.get(key);
  assertNull(result);
 }

3、测试方法必须是使用@Test指定(并不是测试类中所有的方法都是测试方法,使用@Test指定的才是),且返回值void,还不能有参数。

4、如果Spring配置文件中配置了数据库连接池,请不要使用JNDI方式配置。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1d3c3efa46fff52670de2dc9a59fba67.html