Showing posts with label findbugs. Show all posts
Showing posts with label findbugs. Show all posts
Wednesday, November 20, 2013
sonarqube presentation
I did a SonarQube presentation at work. Feel free to check and use it as you like here.
at
16:24
Labels:
architecture,
bug,
checkstyle,
coding rules,
complexity,
design,
documentation,
duplication,
findbugs,
pmd,
sonarqube,
unit test
Wednesday, May 11, 2011
a great way of improving your java code: findbugs!
We decided to make our project's code more robust and bug-free. I suggested the use of Findbugs which is basically a program that uses static analysis to search for bugs in your java code. It can be used as IDE plug-in or as a stand-alone application. Findbugs pinpoints problematic places in your code. There are many type of pre-defined problems that Findbugs looks for like duplicate case branches in switch statements, streams which are not closed in all cases, inefficient use of map iterator, redundant comparison to null ... etc. I can't recommend Findbugs enough.
Subscribe to:
Posts (Atom)