java测试技巧文章收藏

测试数据生成

feed4junit

feed4unit官方网站

来自于IBM的feed4unit资料

databene benerator

junit Test

JUnit4.7学习笔记(一)——核心分析

JUnit 4.7学习笔记(二)——BlockJUnit4ClassRunner分析 
JUnit 4.7学习笔记(三)——MethodRule

JUnit 4.7学习笔记(四)——Statement

JUnit 4.7学习笔记(五)——测试引擎综述

maven默认JDK更改为jdk1.6

  <profiles>
      <profile>    
        <id>jdk-1.6</id>    
        <activation>    
            <activeByDefault>true</activeByDefault>    
            <jdk>1.6</jdk>    
        </activation>    
        <properties>    
            <maven.compiler.source>1.6</maven.compiler.source>    
            <maven.compiler.target>1.6</maven.compiler.target>    
            <maven.compiler.compilerVersion>1.6</maven.compiler.compilerVersion>    
        </properties>    
    </profile>