tool « FindBugs « Java Testing Q&A

Home
Java Testing Q&A
1.Development
2.FindBugs
3.HTMLUnit
4.hudson
5.junit
6.performance
7.plugin
8.profile
9.selenium
10.Tools
11.unit test
Java Testing Q&A » FindBugs » tool 

1. Any Tools to Catch Silly Mistakes in C Code?    stackoverflow.com

I had a nasty typo that wasted my time and my colleague's time, it was something like this:

for (i = 0; i < blah; i++); // <- I had a semi-colon ...

2. FindBugs for .Net    stackoverflow.com

In Java is this nice tool called FindBugs. Is there something similar in .Net?

3. Is there some way to assume @Nullable as default? (using FindBugs or any other free tool)    stackoverflow.com

Consider such code

public void m1(String text) {
    if(text == null)
        text = "<empty>";

    System.out.println(text.toLowerCase());
}
And this is a buggy ...

4. Report tool for Findbugs    stackoverflow.com

I need a reporting tool which does the mining bug databases and filtering in the FindBugs. Here are the steps,

  1. Analyze mutliple versions of a jar file
  2. Combine them all and generate a ...

5. There are similar tools like FindBugs?    stackoverflow.com

I'm searching for similar tools like FindBugs to analyze my code. I only saw that in the links page of the FindBugs site. I can search in webfor the tools, but I ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.