Code quality is a measure of how well a set of code balances qualities of maintainability, performance, and style.

learn more… | top users | synonyms

0
votes
1answer
18 views

tools for commented-out code

on the thread tool for detecting commented-out code, there is sonar referred for checking commented-out code. However, with version 3.4.1, I didn't find any such details. Does anybody have any idea ? ...
1
vote
1answer
27 views

How many unit test or what kind of unit test do you do when developing a iOS app? [closed]

I know there are many tools to do unit testing out there and I've tried some. But actually I don't do any unit testing when developing an iOS app.(Which I think makes me a bad iOS developer) So my ...
0
votes
1answer
22 views

sonar not connecting to mysql db

I want to connect sonar to local mysql db .My sonar.properties configuration is While Iam running mvn sonar:sonar on a sample project I am getting this error [WARNING] [INFO] [INFO] ...
0
votes
1answer
30 views

PMD: creatRuleViolation how to define it? Save me from this

Help. I would like to sacrifice the reputation for a proper answer.. public class ParameterNameConvention extends AbstractJavaRule { private final static String PATTERN = "[p][a-zA-Z]+"; public ...
0
votes
2answers
29 views

PMD: Implicit super constructor AbstractNcssCountRule() is undefined for default constructor. Must define an explicit constructor

I would like to test if a Specified Method exists. And I have done the programmation with some help from this website. Yeah, I have writen 2 interfaces and a class who implement the interfaces. Here ...
0
votes
0answers
28 views

Writing a New Rule of PMD to Test if a Specified Method Exists

I have been writing a new rule of PMD to test whether there exists one specified method (the name of this method is 'isDirty') in my source code. Thanks in advance. public class TestMethod extends ...
0
votes
0answers
20 views

PhoneGap application - Code Quality Check

I have created a PhoneGap application for iOS and android. I want to perform Static Code Analysis for this application in order to find performance issues, memory leaks, security warnings and so on ...
0
votes
1answer
26 views

Junit tests injecting beans with @Autowired annotations

I want to write unit test using Junit and Mockito, in this case I don't want to write integration tests. The method that I want to test uses variables that are injected via Spring using the @Value or ...
1
vote
2answers
41 views

How to assure that JUnit @Before has an accompanying @After

Today I bumped into my own mess: some gigabytes of temporary test data in temp folders created by JUnit's TemporaryFolders that weren't cleaned up. It appears to be that if your test does not have an ...
1
vote
1answer
67 views

Is there a hashCode(), equals() and toString() method generator that doesn't flag lots of Sonar violations

I use eclipse to generate hashCode(), equals() and toString() methods, I just run Sonar on my project and most of the 179 violations are due to the code in these methods, mainly due to these ...
0
votes
0answers
41 views

What is product quality and process quality in software engineering [closed]

What is the main difference between product quality and process quality in software engineering? Can someone please answer my question. Thanks
0
votes
2answers
55 views

CA2202: Best practise to create Database Connection

I recently start using Code Analysis from Visual Studio. I am pretty new to such thing. I found this error/warning CA2202 (Do not dispose objects multiple times): for following code fragment ...
0
votes
1answer
40 views

Separating code into other classes to keep things tidy?

I'm writing an openGL ES 2.0 app on Android and I have my main 'Rendering' class, currently, I'm declaring all my bitmaps there and loading all the resources / creating objects etc like for example: ...
4
votes
7answers
45 views

How does one comment out a HTML code that has PHP in it?

I have a HTML code that has PHP in it and I wanted to comment it all out. <input type="hidden" name="returnurl" value="<?php if (!empty($link)) {echo $link;}?>"> How do I comment out ...
21
votes
3answers
364 views

When should I use C++1y automatic return type deduction?

With GCC 4.8.0 released, we have a compiler that supports automatic return type deduction, proposed, and as of recently, adopted, for C++14. With -std=c++1y, I can do this: auto foo() { //deduced to ...
0
votes
1answer
18 views

Setting defaults for optional enums in a Controller

What's the best practice for setting a default in an MVC controller? For example, given the following signature: public IEnumerable<Widget> Get(OrderBy orderBy, SortOrder sortOrder) { // ...
-1
votes
1answer
156 views

Avoid excessive class coupling- CA1506 [closed]

CA1506 Avoid excessive class coupling 'TechnicalInfoMaintenance' is coupled with 81 different types from 27 different namespaces. Rewrite or refactor this class's methods to decrease its class ...
0
votes
1answer
106 views

How can a code inspection tool like Sonar be leveraged best for an old project which is about 80% complete?

There is no doubt in my mind that Sonar is a great tool for new projects. It works seamlessly with Hudson and brings the power of tools like FindBugs,PMD,Cobertura etc together into one. The ...
0
votes
1answer
56 views

What does “LifeCycle expectations” mean in SQALE?

I was going through this wiki article on SQALE(Software Quality Assessment based on Lifecycle Expectations). The Software Quality assurance part of it is clear. But I am unable to understand the ...
2
votes
1answer
533 views

What does package tangle index data indicate in Sonar?

I got the following data on one of the 7 axes(See the second picture) after running a Sonar analysis on my project. What information can be decoded from this data? Also which of the axes in the ...
0
votes
0answers
91 views

Fastest way to search for keywords in a array in Python?

In Python, I have read in a file and am searching through it for a set of words. I have the below test code which shows the fastest (so far) is set.intersection(). The question is, Are there other ...
0
votes
2answers
140 views

What is the difference between afferent couplings and efferent couplings of a class?

Code quality metric tool like Sonar does provide the ability to drill down to a class and find out the number of: Afferent (incoming) couplings Efferent (outgoing) couplings What are these two ...
0
votes
0answers
25 views

How can i use Eclipse to refactor a variable to a class?

I would like to make use of eclipse's refactoring utilities. I would like to extract a variable into a class, while preserving the functionality of the program. My Variable is a Hashmap: ...
-3
votes
2answers
336 views

ZK framework vs JSF which is better? [closed]

I need to develop a telecom application for the company i work with, so i have the choice between JSF and ZK. which should i use ? i know that when speaking of client side code or javascript, ZK is ...
9
votes
1answer
368 views

Rulesets for cppcheck

Cppcheck allows you to create your own rules files, but I don't know how much of cppcheck's functionality is exposed. Is anyone working on a set that would enforce JSF or MISRA rules?
2
votes
1answer
32 views

Writing very clean API/protocol “dialogues”?

Specifically I am writing a chrome extension that has multiple types of requests between the content script and the background script, these requests are of the type where asynchronous processing ...
2
votes
5answers
291 views

Make scala sortWith closure look neat

I'm building a small desktop application. Mainly to increase my knowledge of Scala. My main focus is to make my code neat. In one of files there is one very ugly looking function which I'm not sure ...
1
vote
2answers
386 views

Why maven command mvn sonar:sonar works without any plugin configuration in my POM.xml?

I have a maven web project in my repo. I am a maven noob but still I understand the fact that there are plugins which we need to configure only then we could run plugin specific commands. Facts :- ...
3
votes
5answers
191 views

How to identify levels of abstraction? [closed]

I'm always striving to improve the quality of my work. And so I came to read Kent Beck's great little book Smalltalk Best Practice Patterns. I'm not a Smalltalk programmer but many of the patterns are ...
0
votes
1answer
166 views

What does codeclimate do?

I see many gems and projects using codeclimate. looking, as an example, on rails codeclimate I don't understand how grades are gives to the code. How does one define quality of code? if a piece of ...
2
votes
4answers
66 views

Is it a bad practice to define constants for space, tab and new line character?

Following three line define constants for space, tab and new line characters, Is it a bad practice? 05 #define SPACE ' ' 06 #define TAB '\t' 07 #define EOLN '\n' NOTE: program written in C
0
votes
1answer
74 views

CLOC not counting actionscript files correctly

When I used CLOC on a Actionscript project folder there seems to be something wrong with the line count. For the project I'd expect something like a couple of thousand lines of code, but I get this: ...
1
vote
1answer
87 views

Getting groups subgroups and users from AD (quality check)

I'm retrieving all groups, subgroups and users I'm using the following code ResultPropertyValueCollection resultCollection = result.Properties["member"]; foreach (var oneResult in ...
0
votes
1answer
121 views

How can I get Eclipse to mark generated code like equals to prevent code quality tooling issues?

Generated code tends to flag up in our SONAR code quality tooling for things like cyclomatic complexity. It seems that it is a recognised problem and there is support for annotation-based suppression. ...
1
vote
1answer
113 views

Why is phploc ignoring excludes in ant

in my buildfile I use phploc as described in jenkins-php.org but it just won't ignore folders. <target name="phploc" description="Measure project size using PHPLOC"> <exec ...
2
votes
3answers
130 views

best way to diff two lists and get net changes

I have an object and two lists as follows: public class MyObject { public int Key; public DateTime Day; public decimal Value; } List<MyObject> ...
0
votes
2answers
119 views

how to improve legacy code quality while delivering new features [closed]

I have inherited bad code which is basically not object oriented, no automated tests, no attention to coding standards etc. This code base that delivers X features now needs to be expanded to add a ...
1
vote
3answers
269 views

What are the advatages of sonar while using hudson? [closed]

Actually my question is about the why should i use sonar instead of other hudson code analysis tools like emma or cobertura?
0
votes
2answers
123 views

not equals in java

I have this input " 4+4-(4+4+(4+4)))" in an array of strings "balance array" I'm trying to execute this code String expression = ""; for(int j=2 ; j<balance.length-1 ; j++) { ...
0
votes
1answer
127 views

How to use a maven artifact to configure a sonar quality profile?

For our CI builds, we are using a company-wide set of rules for PMD and Checkstyle. They are packaged as a maven artifact in an internal repository and are pulled on every build. I would like to use ...
4
votes
4answers
90 views

Performance of multiple iterations in Python

Wondering about the performance impact of doing one iteration vs many iterations. I work in Python -- I'm not sure if that affects the answer or not. Consider trying to perform a series of data ...
0
votes
4answers
297 views

Java source code line analyzer to count source code lines excluding comments

I want to know if a source code line analyzer exists. I want to count the number of files and the lines of code in a Java project. I would prefer it if I could distinguish source and comments. Are ...
2
votes
1answer
282 views

set findbugs NotNull as default for all classes under a package

I have the simple code below for testing the FindBugs @NonNull annotation with Maven. I execute mvn clean install and it correctly fails to build because print(null) violates the non-null ...
4
votes
2answers
216 views

Instance field vs. passing method parameter

I've seen in some code different ways to pass around data within a class. Say for example we're in a user control (ASCX) and need to track something during various methods, e.g. the current domain ...
3
votes
8answers
704 views

Code quality tools for Android/Java

I'm totally new to Java however I need to be able to do some review process of the quality of code. Coming from a PHP background, I'm used to tools like: lint code style formatter code sniffer ...
1
vote
0answers
83 views

How to ignore some files in Delphi QA audits?

I'm using the fabulous Audits tool within Delphi XE. It's really useful because it founds some architecture smells, coding rules violations ... BUT, I had not found any way to ignore some files. I ...
2
votes
0answers
119 views

How is technical debt best measured? What metric(s) are most useful? [closed]

If I wanted to help a customer understand the degree of technical debt in his software application, what would be the best metric to use? I've stumbled across Erik Doernenburg's code toxicity, and ...
-1
votes
1answer
572 views

CodeFlow - Any News in Visual Studio 2012? [closed]

Does anyone have news about CodeFlow integration in Visual Studio 2012 ? Clark Roberts and Mike Cook dreamed up a better way to do code reviews one night in a bar. Today their side project, CodeFlow, ...
0
votes
3answers
224 views

SONAR vs the tools individually?

I haven't used SONAR myself, but aparently it can integrate all kinds of tools such as PMD, findbugs, cobertura, etc. We are using Jenkins and I was wondering whether it is a good idea to deploy SONAR ...
1
vote
2answers
601 views

What exactly is the meaning of False-positive operation in sonar?

When i encounter a violation in sonar (in violation drilldown tab), in the source code view Sonar has some action like comment, assign ,... one of those is False-positive, i want to know what exactly ...

1 2 3 4