Which are the important tools to test the quality of your codes? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 27

Which are the important tools to test the quality of your codes?

This question popped-up to my mind when I was debugging one of my Java code. Just wanna know about what tools you use to check: - the Quality. - the Clarity. - the Presentation...of your code(s) and how? You could also comment your favorites :)

14th May 2017, 6:43 PM
Dev
Dev - avatar
6 Answers
+ 12
There is a tool called code metrics in Visual Studio which evaluates your overall code quality. Not really in terms of presentation or clarity though. Code metrics include maintainability index, cyclomatic complexity, class coupling, depth of inheritance and lines of code.
14th May 2017, 7:42 PM
Karl T.
Karl T. - avatar
+ 7
In terms of the clarity & presentation, I'm not aware of any automated tools. I've found that another perspective is the most useful. Either another person, or yourself after enough time has passed that not everything is still in your head. If they/you can still follow the flow, good! Otherwise, might be time for an edit. In terms of raw execution performance, such tools are more available. Memory profilers, execution time breakdowns, etc are out there. But on human readability, it's hard to beat another human who doesn't think the same way as you.
14th May 2017, 7:23 PM
Jim
Jim - avatar
+ 4
@Dayve can you post link to profile of Nima J? Lots of people talk about him but I don't notice any of his/her activity.
15th May 2017, 5:21 AM
Vaibhav Sharma
Vaibhav Sharma - avatar
+ 4
Thanks
15th May 2017, 5:24 AM
Vaibhav Sharma
Vaibhav Sharma - avatar
+ 4
@dayve do you know hacking
24th May 2017, 6:39 AM
MAHENDAR SONI
MAHENDAR SONI - avatar
+ 2
w3School has a validation site for web pages
15th May 2017, 10:45 PM
rAsHtElL
rAsHtElL - avatar