测试工具-checkStyle

(1)
安装插件:
下载插件之后,把里面的两个文件夹plugins和 features下面的文件分别放到eclipse 目录下面对应的plugins和features目录下。
(2)
1.运行:
右键选择要运行checkStyle的项目-->checkStyle-->选择Active CheckStyle/check codes with CheckStyle
系统自动对该项目的所有java文件进行检查,并在Problems中用Warning进行提示。在修改了代码后,系统会自动重新进行检查,符合条件的warning就不再出现了,非常的方便。
2.
停止:
右键选择要运行checkStyle的项目-->checkStyle
-->选择DeActive CheckStyle/clear CheckStyle violation
(3)
若要配置checkStyle的规则,可以:
右键选择要运行checkStyle的项目-->属性-->checkStyle,便可配置checkStyle的规则.
 
(4)
在ant中运用checkStyle:
  <!-- checkStyle测试变量-->
   < property name ="checkstyle.path" value ="${webapp.test.libpath}" />
   < property name ="checkstyle.result" value ="${webapp.checkCodesResult}\checkstyle" />
   < path id ="checkstyle.path" >
     < fileset dir ="${checkstyle.path}" >
       < include name ="checkstyle-all-5.0.jar" />
     </ fileset >
   </ path >
  <!-- checkStyle测试-->
   < taskdef name ="checkstyle" classname ="com.puppycrawl.tools.checkstyle.CheckStyleTask" classpathref ="checkstyle.path" />
   < target name ="checkstyle" description ="Generates a report of code convention violations." >
     < delete dir ="${checkstyle.result}" />
     < mkdir dir ="${checkstyle.result}" />
     < checkstyle config ="${checkstyle.path}/sun_checks.xml" failureProperty ="checkstyle.failure" failOnViolation ="false" >
       < formatter type ="xml" tofile ="${checkstyle.result}/checkstyle_report.xml" />

       < fileset dir ="${webapp.java}" >
         < include name ="**/*.java" />
       </ fileset >
     </ checkstyle >
     < xslt in ="${checkstyle.result}/checkstyle_report.xml" out ="${checkstyle.result}/checkstyle_report.html" style ="${checkstyle.path}/checkstyle-frames.xsl" />
   </ target >
具体与findbugs,pmd的结合使用,请看cc的配置文章。
 

你可能感兴趣的:(职场,休闲)