本文的例子全部来自github上cglib的官方文档,有关cglib的教程少之又少,如果想学习觉得还是看看诸如Hibernate和Spring的源码来的实在。
package com.tang;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotSame;
import j...
分类:
其他好文 时间:
2015-04-05 16:03:41
阅读次数:
187
/2015年04月05日12:13:43 基于Annotation和Reflection的Junit初探:package cn.seven.shengsiyuan.annocation.junitan;import org.junit.Test;public class JunitSource {....
分类:
编程语言 时间:
2015-04-05 13:13:18
阅读次数:
108
package mysql;import java.sql.Connection;import java.sql.SQLException;import java.sql.Savepoint;import java.sql.Statement;import org.junit.Test;//事物特性...
分类:
数据库 时间:
2015-04-04 21:04:35
阅读次数:
375
Ehcache的一个完整例子测试类测试驱动开发,先写测试类package com.linkage.mapp.cache;import org.junit.Test;import com.linkage.component.PageData;public class CacheTest { @Test
public final void testGetValue() throws Exc...
分类:
系统相关 时间:
2015-04-04 18:28:39
阅读次数:
209
需要测试的类Person:
package cn.edu.lstc.junit;
public class Person {
public void run() {
System.out.println("run...");
}
public void eat() {
System.out.println("eat...");
}
public String a() ...
分类:
其他好文 时间:
2015-04-04 09:12:11
阅读次数:
110
Android基础-02
1.单元测试的相关概念
测试分类:
1、根据是否知道源代码分类:
黑盒测试:
白盒测试:
2、根据测试的粒度:
方法测试:写完一个能够独立运行的方法后就去测试;
单元测试:写完一个能够运行的业务逻辑单元就去测试;JUnit单元测试;
模块测试:对模块做整体测试;
集成测试:对整个软件做集成测试;与服务器端做链条测试;
Debug调试:使用debu...
分类:
移动开发 时间:
2015-04-03 13:37:10
阅读次数:
155
Java单元测试(Junit+Mock+代码覆盖率) 单元测试是编写测试代码,用来检测特定的、明确的、细颗粒的功能。单元测试并不一定保证程序功能是正确的,更不保证整体业务是准备的。 单元测试不仅仅用来保证当前代码的正...
分类:
其他好文 时间:
2015-04-03 11:39:12
阅读次数:
259
假设Spring配置文件为applicationContext.xml一、Spring配置文件在类路径下面在Spring的java应用程序中,一般我们的Spring的配置文件都是放在放在类路径下面(也即编译后会进入到classes目录下)。以下是我的项目,因为是用maven管理的,所以配置文件都放在...
分类:
编程语言 时间:
2015-04-03 10:55:07
阅读次数:
168
本篇讲述如何在JUnit 4下正确测试异常,我会从 try..catch的方式谈起,然后说到 @Test(expected=Exception.class),最后论及 @Rules public ExpectedException的实现方式,最终基本可确定用 @Rules是最方便的。我们在用 JUn...
分类:
其他好文 时间:
2015-04-02 18:26:55
阅读次数:
136
本文利用mvc三层架构来讲述S2SH三大框架整合的步骤:
1.建立好包结构,建立好的包结构如下:
2.导入相应的jar包
(1)struts2用到的jar包
(2)spring用到的jar包
(3)hibernate用到的jar包
(4)mysql驱动包,junit和struts2插件
(5)公共包,例如日志
commons-logging-...
分类:
编程语言 时间:
2015-04-01 13:27:47
阅读次数:
271