
测试! 测就测吧,没有喝(⊙o⊙)
~纹之心
平和快乐的生活....
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
基于h2和Spring测试的几个要点
基于h2和Spring测试的几个要点 ========H2==== 下载H2的zip包,解压,运行bin下的批处理文件,自动打开连接页面,注意选择Embedded、Server ,两者的连接方式是不一样的(弄了半天发现写不进数据,就是因为这点)。 h2 的几种Database URLs Database URLs Embedded jdbc:h2:~/test 'tes...原创 2011-05-20 14:53:19 · 200 阅读 · 0 评论 -
关于SpringSide的DbUnit测试的思考
关于SpringSide的DbUnit测试的思考 ------》springSide的DbUnitUtils [code="java"]/** * Copyright (c) 2005-2010 springside.org.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * ...原创 2011-05-23 10:24:06 · 117 阅读 · 0 评论 -
junit4的参数测试
junit4的参数测试 当一个方法需要多次测试时可以用junit4的参数化的测试,详细说明见参考 这里写个方法多参数的例子 -------》HelloWorld [code="java"]public class HelloWorld { public int add(int i,int j){ return i+j; } }[/cod...原创 2011-05-27 16:42:09 · 192 阅读 · 0 评论