[Fb-contrib-commit] SF.net SVN: fb-contrib: [1009] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-03-16 18:24:52
|
Revision: 1009
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1009&view=rev
Author: dbrosius
Date: 2008-03-16 11:24:54 -0700 (Sun, 16 Mar 2008)
Log Message:
-----------
document JAO and WEM
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2008-03-16 17:35:14 UTC (rev 1008)
+++ trunk/fb-contrib/htdocs/index.html 2008-03-16 18:24:54 UTC (rev 1009)
@@ -48,9 +48,9 @@
<a href="bugdescriptions.html">Bug Descriptions</a>
<hr/>
- <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
+ <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
Detectors added in svn<br/>
- <div id="svn" style="display:none;">
+ <div id="svn" style="display:block;">
<ul>
<li><b>[CFS] Confusing Function Semantics</b><br/>
Looks for methods that return a parameter after making what looks like
@@ -62,12 +62,21 @@
Looks for implementation of clone where an assignment is made to a field of the
source object. It is likely that that store should have occurred on the cloned object, as
the clone operation is almost always considered read only.</li>
+ <li><b>[JAO] JUnit Assertion Oddities</b><br/>
+ Looks for junit test case methods that use assertions with odd parameters. Things such as,
+ passing a constant as the second (actual) parameter, not using the three parameter version of
+ asserts for doubles, or passing true or false as the first parameter instead of using assertTrue,
+ or assertFalse.</li>
+ <li><b>[WEM] Weak Exception Messaging</b><br/>
+ Looks for exceptions that are thrown with static strings as messages. Using static strings
+ doesn't differentiate one use of this method versus another, and so it may be difficult
+ to determine how this exception occurred without showing context.</li>
</ul>
</div>
<hr/>
- <img id="v3_4_0_image" src="flip2.gif" onClick="toggleBlock('v3_4_0', 'v3_4_0_image');" align="top"/>
+ <img id="v3_4_0_image" src="flip1.gif" onClick="toggleBlock('v3_4_0', 'v3_4_0_image');" align="top"/>
Detectors add in v3.4.0<br/>
- <div id="v3_4_0" style="display:block;">
+ <div id="v3_4_0" style="display:none;">
<ul>
<li><b>[SJVU] Suspicious JDK Version Use</b><br/>
Looks for calls to classes and methods that do not exist in the JDK for which this class is
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|