- 浏览: 125931 次
- 性别:
- 来自: 北京
最新评论
文章列表
1、什么是Junit?
JUnit是一个开发源代码的Java测试框架,用于编写和运行可重复的测试。他是用于单元测试框架体系xUnit的一个实例(用于java语言)。它包括以下特性:
1、用于测试期望结果的断言(Assertion)
2、用于共享共同测试数据的测试工具
3、用于方便的组织和运行测试的测试套件
4、图形和文本的测试运行器
2、Junit本身是围绕着两个设计模式来设计的:命令模式和集成模式
命令模式 利用TestCase定义一个子类,在这个子类中生成一个被测试的对象,编写代码检测某个方法被调用后对象的状态与预期的状态是否一致,进而断言程序代码有没有bug。
集成模式 利用TestSu ...
转自:
http://www.cnblogs.com/xytop/articles/1277125.html
http://blog.csdn.net/binyao02123202/article/details/6254234
http://shuhucy.iteye.com/blog/1709296
http://www.oschina.net/question/82993_74395
http://younglab.blog.51cto.com/416652/106059
转自:
http://surpass-li.iteye.com/blog/146064
andriod SSO解决方案
- 博客分类:
- SSO
转自:
http://www.cnblogs.com/feisky/archive/2010/01/16/1649081.html
http://274137570-qq-com.iteye.com/blog/1517168
http://czhjchina.blog.163.com/blog/static/2002790472012220103314750/
nginx的location配置
- 博客分类:
- nginx学习
转自:
http://www.blogjava.net/chenlb/archive/2010/02/03/311772.html
http://blog.csdn.net/cutesource/article/details/5838693
http://yefriendly.iteye.com/blog/377841
http://open.weibo.com/wiki/%E7%A7%BB%E5%8A%A8%E5%BA%94%E7%94%A8SSO%E6%8E%88%E6%9D%83
通过request取IP
- 博客分类:
- Java学习
转自:
http://blog.sina.com.cn/s/blog_7fa2bcf50100x8ql.html
根据request获取IP的方式:
public static String getIpAddr(HttpServletRequest request) {
String ip = request.getHeader("x-forwarded-for");
if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
...
sublime text2安装
- 博客分类:
- 软件
转自:http://songfantasy.iteye.com/blog/1536184
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body><form action="youraction" method="post" enctype ="multipart/form-data">
<input id="file" name="file& ...
转自:http://winterit.blog.163.com/blog/static/139564053201033013747832/
找到$安装路径$\eclipse\configuration\.settings下的org.eclipse.ui.ide.prefs文件,用文本编辑器打开,修改RECENT_WORKSPACES,它们以“\n”分隔。删除你不需要的工作台。保存退出。
shell中执行sudo,不需输入密码
- 博客分类:
- linux技巧
转自:http://hi.baidu.com/sunnnnnnnnny/item/ffc22fa6fef03513a8cfb78e
echo "yourpassword" | sudo -S yourcommend
ubuntu12.04取消sudo输入密码
- 博客分类:
- linux技巧
1、命令行输入:sudo visudo
2、在最后输入: 你的用户名 ALL=(ALL) NOPASSWD:ALL
3、ctrl + o
4、ctrl + x