java代码的测试手段

##一、控制台打印输出

try{
         System.out.println("加载配置:"+configuration.getClass());
         return configuration.buildSessionFactory();
     }catch(Exception e){
         System.out.println("配置异常"+e.getMessage());
         return null;
     }

##Junit Test Case单元测试
junit4学习笔记:http://blog.csdn.net/afeilxc/article/details/6218908

##断点测试
首先,在你想要进行测试的代码之前双击打个断点,
接着,右键点击”debug as”,
接着慢慢点击”下一步”,根据日志信息找出错误之处。

你可能感兴趣的:(java)