active questions tagged quality - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T23:08:57Zhttp://stackoverflow.com/feeds/tag/qualityhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914020/what-quality-attributes-are-vital-to-an-ecommerce-web-application1What quality attributes are vital to an ecommerce web application?Stefan Hendriks2009-12-16T11:18:31Z2009-12-16T11:18:31Z
<p>This question is just out of interest, and perhaps could be useful for my thesis. </p>
<p>A web application, especially when your business is relying on it financially, needs to meet certain requirements in order to survive. I'd like to hear what kind of (software) quality attributes you find most important (name a few) regarding to web applications.</p>
<p>I give my share:
<em>performance</em> (when visitors have to wait more than 2 seconds, 50% or more will leave your site, meaning less possible sales).</p>
<p><em>security</em> , atleast be aware of OWASP</p>
<p><em>reliability</em>, your web app must be able to handle faulty input, but also loads of them.</p>
<p><em>maintainability</em>, in this world being able to change fast and adapt to your users need to increase sales is vital for survival.</p>
http://stackoverflow.com/questions/1871677/how-to-integrate-bugzilla-and-hp-quality-center0how to integrate bugzilla and HP quality center?Anitha2009-12-09T05:03:20Z2009-12-09T05:16:54Z
<p>I'm working on integrating bugzilla with Hp Qc .. i'm performing this by using perl script by directly manipulating database using sql commands.. I want to use the webservices of bugzilla. I have gone thru the bugzilla webservice Api but tat wasnt enough to get started. I'm a beginner and this is first project of my career . please guide me thru .. </p>
http://stackoverflow.com/questions/1629915/working-with-images-when-uploading-in-adobe-flex0Working with images when uploading in Adobe FlexRafael2009-10-27T10:27:50Z2009-12-03T15:15:12Z
<p>Hi there!</p>
<p>I'm beginner with Flex and I already have a hard task to develop, so I could use some help! :)</p>
<p>What I have to do is upload some images to a server, which is OK, but before uploading I must downsize this images by reducing their quality and width/height. I've found many information about the class JPGEncoder, but I couldn't make it work.</p>
<p>Could anyone help me with that?</p>
<p>Thanks!
Rafael.</p>
http://stackoverflow.com/questions/1825130/how-to-encourage-positive-developer-behavior-with-an-ide3How to encourage positive developer behavior with an IDE?Thomas Jung2009-12-01T09:49:55Z2009-12-03T13:32:04Z
<p>The goal of IDEs is increase productivity. They do a great job at that. Refactoring, navigation, inline documentation, auto completion help increase productivity immensely.</p>
<p>But: <strong>Every tool is a weapon</strong>. The very same IDE helps to produce chunk code. Some IDE features are an invitation to produce bad code: code generation, code formatting tools, refactoring tools.</p>
<p>IDE overuse tends to isolate developers from the necessary details. It is <strong>a good thing that you can start working</strong> but at some point in your career you have to be able to figure out how to start a process. You can ignore this detail for some time, in the end they are important to write a working product (vs. bolted together stuff that works 90% of the time).</p>
<p><strong>How do you encourage positive behavior of other developers working with an IDE?</strong> This is a question as old as copy and paste.</p>
<p>To get the right impression: <strong>developers have to have the maximum freedom to mobilize their maximum creativity and motivation</strong>. They may use IDEs and all the related tools as they see fit. Nobody should impose draconian measures on them. I don't want to demotivate and force someone to do something. Good behavior has to be encouraged. It has to itch little a bit if you do the wrong thing. In the same line as the SO "accept rate" metric (and reputation). You can ignore it but <strong>life is better if you follow the rules</strong>.</p>
<p>(The solution should work in a given setting. You can ignore reviews, changing the staffing or more education as potential solutions.)</p>
http://stackoverflow.com/questions/1832786/perceptual-quality-measures-for-images2Perceptual quality measures for imagesGacek2009-12-02T13:07:40Z2009-12-02T13:37:24Z
<p>Hi,
I'm currently working on algorithm for denoising images. I need to compare my algorithm with other, existing algorithms, but to do so I need a good quality measure.<br>
The main goal for such measure is to be close to human perception skills. I know, that it is almost impossible, but there are good perceptual measures for audio signals. Are there any similar algorithms for images? </p>
<p>Right now I'm using simple measures, such as mean squared error (MSE), signal to noise ratio (SNR) etc...<br>
And for your information, I'm currently implementing this in matlab</p>
http://stackoverflow.com/questions/1549510/what-data-exists-to-show-that-refactoring-is-useful5What data exists to show that refactoring is useful?Jason Baker2009-10-11T00:50:16Z2009-12-02T13:31:20Z
<p>I'm giving a presentation on refactoring Python. I'd like to put in a couple of slides giving statistics to show that refactoring is a good thing. I've been searching the ACM digital library, but it's a bit like looking for a needle in a haystack. Does anyone know of any statistics on the subject of refactoring in regards to productivity or quality that would be good in a presentation?</p>
http://stackoverflow.com/questions/347584/why-is-software-quality-so-problematic45Why is software quality so problematic?Yuval A2008-12-07T13:40:35Z2009-11-26T09:42:46Z
<p>Even when viewing the subject in the most objective way possible, it is clear that software, as a product, generally suffers from low quality.</p>
<p>Take for example a house built from scratch. Usually, the house will function as it is supposed to. It will stand for many years to come, the roof will support heavy weather conditions, the doors and the windows will do their job, the foundations will not collapse even when the house is fully populated. Sure, minor problemsdo occur, like a leaking faucet or a bad paint job, but these are not critical.</p>
<p>Software, on the other hand is much more susceptible to suffer from bad quality: unexpected crashes, erroneous behavior, miscellaneous bugs, etc. Sure, there are many software projects and products which show high quality and are very reliable. But lots of software products do not fall in this category. Take into consideration paradigms like TDD which its popularity is on the rise in the past few years.</p>
<p>Why is this? Why do people have to fear that their software will not work or crash? (Do you walk into a house fearing its foundations will collapse?) Why is software - subjectively - so full of bugs?</p>
<p><strong>Possible reasons:</strong></p>
<ul>
<li>Modern software engineering exists for only a few decades, a small time period compared to other forms of engineering/production.</li>
<li>Software is very complicated with layers upon layers of complexity, integrating them all is not trivial.</li>
<li>Software development is relatively easy to start with, anyone can write a simple program on his PC, which leads to amateur software leaking into the market.</li>
<li>Tight budgets and timeframes do not allow complete and high quality development and extensive testing.</li>
</ul>
<p>How do you explain this issue, and do you see software quality advancing in the near future?</p>
http://stackoverflow.com/questions/1688884/pvrtc-format-compromises-image-quality0PVRTC format compromises image qualitySankar2009-11-06T16:53:22Z2009-11-26T05:47:21Z
<p>Hi,</p>
<p>For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is ruining the quality of the images.. I am using spritesheets with transparencies for the character animations.. and the pvrtc makes the edges look muddy around the character near the transparencies.</p>
<p>I read that pvrtc cant handle edges and all.. but is there a solution to it? Can we do something to these images whereby atleast there wont be these muddy boundaries around the character..</p>
<p>Sankar</p>
http://stackoverflow.com/questions/6847/defensive-programming9Defensive programmingDavid2008-08-09T17:02:56Z2009-11-23T23:51:15Z
<p>When writing code do you consciously program defensively to ensure high program quality and to avoid the possibility of your code being exploited maliciously, e.g. through buffer overflow exploits or code injection ?</p>
<p>What's the "minimum" level of quality you'll always apply to your code ?</p>
http://stackoverflow.com/questions/100661/calculate-average-lines-of-code-per-method-for-javascript2Calculate Average Lines of Code per Method for JavascriptKarl2008-09-19T09:12:34Z2009-11-16T04:23:44Z
<p>Are there any tools available for calculating the <strong>average number of lines of code per method</strong>?</p>
<p>I want to know the average size of each method, not just the total number of lines in the project. The per method count will allow me to measure how simple each method is.</p>
<p>This will be calculated as part of the build process, and displayed on a dashboard. The idea being that we can see if the average size of each method is increasing. And this will flag the possibility that code complexity is increasing and we may need to think about refactoring.</p>
http://stackoverflow.com/questions/1721479/who-judges-and-keeps-the-quality-of-the-code-within-a-team-of-programmers2Who judges and keeps the quality of the code within a team of programmers?burak ozdogan2009-11-12T11:10:20Z2009-11-12T11:51:58Z
<p>Hi,</p>
<p>Even there are some coding conventions in a software development team, if there are more than 7-8 people coding on the same solution, who or what mechanism assures the standardizing and keeping the quality of the code? </p>
<p>How do they handle this in large projects, so that when a new programmer joins the team won't feel like Alice in wonderland?</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1117537/how-to-improve-drawdibs-quality1how to Improve DrawDIB's quality?sxingfeng2009-07-13T02:43:43Z2009-11-09T17:00:12Z
<p>I am coding in c++, gdi
I use stretchDIBits to draw Images to dc.</p>
<pre><code> ::SetStretchBltMode(hDC, HALFTONE);
::StretchDIBits(
hDC,
des.left,des.top,des.right - des.left,des.bottom - des.top,
0, 0,
img.getWidth(),
img.getHeight(),
(img.accessPixels()),
(img.getInfo()),
DIB_RGB_COLORS,
SRCCOPY
);
</code></pre>
<p>However It is slow.
So I changed to use DrawDib function.</p>
<pre><code>::SetStretchBltMode(hDC, HALFTONE);
DrawDibDraw(
hdd,
hDC,
des.left,des.top,des.right - des.left,des.bottom - des.top,
(LPBITMAPINFOHEADER)(img.getInfo()),
(img.accessPixels()),
0, 0,
img.getWidth(),
img.getHeight(),
DDF_HALFTONE
);
</code></pre>
<p>However the result is just like draw by COLORONCOLOR Mode.
How can I improve the drawing quality?</p>
http://stackoverflow.com/questions/1700533/so-how-do-you-people-get-out-of-the-gumption-trap-3So how do you people get out of the "Gumption Trap"? [closed]someguy2009-11-09T11:49:53Z2009-11-09T11:54:17Z
<p>So how do you people get out of the "Gumption Trap"?</p>
http://stackoverflow.com/questions/862409/quality-standards-in-error-reporting0Quality standards in Error reporting?LittleBoy2009-05-14T09:30:36Z2009-11-04T01:06:31Z
<p>It seems not good for me, reporting errors like 'General Error: '+....,</p>
<p>Is there any quality standard in error reporting for developers to follow? </p>
http://stackoverflow.com/questions/1670518/video-or-slide-show-capture-tool-for-record-sequence-of-actions-causes-bugs0Video or slide-show capture tool for record sequence of actions causes bugsMax2009-11-03T22:21:54Z2009-11-03T23:08:43Z
<p>During QA process we usually need to describe a sequence of actions, that causes some bugs.</p>
<p>Usually the best way to do it is describe a situation by text messages. Sometimes screen-shots are helps.
But i believe that video or slide-show should to help QA team and should to reduce time loss on QA-team - developers iterations.</p>
<p>Some time in our team(we have most of QA team in other city), we are use <a href="http://www.teamviewer.com/index.aspx" rel="nofollow">TeamView</a> to describe significant situations. But it takes a lot of time to setup connection, and require to stop developer's work for show time. And if you have to show this bug to other developer, you should repeat this process again.
Video cuts is good item for novice-developer, who can't to know new project fully.
I think we can to find many pluses of this approach.</p>
<p>The minus of this approach is big size of describes. </p>
<p>Is there some tool, that allow to record an user screen actions into video or slide-show?
Better if this tool will be free.</p>
<p>Good feature for this tool is "get slides of last 2 minutes". For example QA-engineer keeps it working in background, and try to do smth that cause a bug. QAE is believe that actions of last 1 minute cause a bug. If the tool will allow to save that 1 minute ago actions, it will be very useful. </p>
http://stackoverflow.com/questions/518180/when-is-it-time-to-have-a-qa-department6When is it time to have a QA department ?David2009-02-05T22:04:43Z2009-11-03T19:56:13Z
<p>The Quality Assurance (QA) department is roughly a bunch of testers debunking your app(s) all day, giving the green light for releases, handling Alpha / Beta programs. And much more.</p>
<p>But without a QA department in a software company, issues arises too often in the field, and problems costs more to fix. However, most companies starts in a garage, with 1 employee being yourself, and then grows into a software company.</p>
<p>When do you tell it's to create such department ? Anything to do with the size of the company, the problems it encounters ? </p>
http://stackoverflow.com/questions/1658069/bot-web-quality1Bot Web Qualityllazzaro2009-11-01T19:26:06Z2009-11-01T20:58:31Z
<p>I am looking for a good open source bot to determine some quality, often required for google indexing.</p>
<p>For example</p>
<ul>
<li>find duplicate titles</li>
<li>invalid links ( jspider do this, and I think a lot more will do this)</li>
<li>exactly the same page, but different urls</li>
<li>etc, where etc equals google quality reqs.</li>
</ul>
http://stackoverflow.com/questions/1440396/how-can-i-process-an-image-in-net-for-a-full-page-print-with-a-quality-like-wind1How can I process an image in .NET for a full-page print with a quality like Windows Photo Gallery does it?Triynko2009-09-17T18:00:24Z2009-10-29T09:58:33Z
<p>I'm writing a printing routing in C#, using the .NET PrintDocument class, handling the OnPrintPage event.</p>
<p>I've managed to maximize the margins and print the Image in landscape mode, but <strong>it simply does not look as good as when I print the same image file from Windows Photo Gallery</strong> (formerly Windows Picture and Fax Viewer), the default image preview program in Windows Vista.</p>
<p>I noticed an option there for selecting <strong>"Sharpen Image for Printing"</strong>, but what does that do?</p>
<p>I've thought about printing copies of the image from Windows Photo Gallery first, then sending the sheets through the printer a second time to print the custom overlays I need, but it's hard to make it line up every time, since the printer sucks the sheet in without the kind of precision I need... so I really need to do ALL the drawing commands within C#, including the image.</p>
<p><strong>Does anyone know how to perform pre-processing on the bitmap so that it prints as nicely as Windows Photo Gallery does it?</strong> Are there any simple print drivers that can intercept Photo Gallery printing output as a standard image file (bmp, png, etc.) that can be read by the .NET Image class? I'm all for creativity here.</p>
http://stackoverflow.com/questions/1632375/disappearing-components0Disappearing components??CobraFlow2009-10-27T17:24:13Z2009-10-27T19:58:50Z
<p>Hi All,</p>
<p>I have two problems that I have no idea how to fix...</p>
<p>Flex.</p>
<p>I have a canvas which contains a single myComponentA. A myComponentA contains a MyComponentB. The myComponentB contains a number of myComponentA's giving a tree structure...Ok so far.</p>
<p>The structure is stored as an XML file.</p>
<p>1) When I load a big (60 or so components), the components are not visible... When I change the player quality to low or medium they appear...!?</p>
<p>2) Towards the bottom of the diagram a component is clipped through the middle as though it has been cut off...(The containing canvas continues on empty...) </p>
<p>Any pointers to finding out what is happening or solutions would be very useful!!!!</p>
<p>Kind regards</p>
<p>Lewis</p>
http://stackoverflow.com/questions/1617492/poor-image-quality-in-listview1Poor image quality in ListViewBotond Balázs2009-10-24T09:34:11Z2009-10-24T10:33:07Z
<p>I'm populating a ListView with items and add images from an ImageList (in the designer). The images, however, are displayed in very poor quality, even though I've set the image size in the ImageList to their original size (16x16). Have a look:</p>
<p><img src="http://balazsbotond.hu/downloads/listview-icons.png" alt="Terrible image quality" /></p>
<p>The original images are beautiful, sharp PNG icons. What can I do?</p>
http://stackoverflow.com/questions/572620/is-a-great-memory-a-requirement-for-great-programming21is a great memory a requirement for great programmingcodergurl2009-02-21T08:15:11Z2009-10-23T23:32:09Z
<p>Do you think having a great memory is REQUIRED to be a great programmer? </p>
<p>I don't consider myself a great programmer but I do think I am decent. But my memory is REALLY bad so I find myself always having to remind myself how to do things. I mean I "know where to look" but sometimes it makes me feel like I am just a crappy programmer. What makes it even worse is that I am always forgetting where things are in my source code or what algorithm I used for certain situations.</p>
<p>Think back on the great programmers you have encountered in your life, didn't all of them seem to have amazing memories?</p>
http://stackoverflow.com/questions/602096/do-many-python-libraries-have-relatively-low-code-quality12Do many Python libraries have relatively low code quality?nikow2009-03-02T12:11:56Z2009-10-23T17:53:22Z
<p>I have this somewhat heretic question: Why do so many Python libraries have low code quality? Or do you think that this observation is absolutely not true? How does the situation compare to other languages? I am interested in your take on this.</p>
<p><em>Some reasons why I have the impression that code quality is lacking:</em></p>
<ul>
<li><p>The docstrings are often completely missing or incomplete, even for the public API (e.g. in numpy). It is painful when a method takes <code>*args</code> and <code>**kwargs</code> but does not document which values can be given.</p></li>
<li><p>Bad Python coding practices, like adding new attributes outside of <code>__init__</code>. Things like this make the code hard to read (or to maintain).</p></li>
<li><p>Hardly any libraries follow the <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP8</a> coding conventions. Sometimes the conventions are not even consistent with the same file of a library (e.g. I saw this in <a href="http://matplotlib.sourceforge.net/" rel="nofollow">matplotlib</a>).</p></li>
<li><p>The overall design seems to be messy, but due to the lack of documentation I find this hard to judge. But it seems that not nearly enough refactoring is done.</p></li>
<li><p>Poor unittest coverage.</p></li>
</ul>
<p>Don't get me wrong, <em>I absolutely love Python and its ecosystem</em>. And even though I struggled with these libraries <em>they generally get the job done and I am grateful for that</em>. But I also think that in the end tons of developer time are wasted because of these issues. Java code for example seems to be much better on average (based on my limited experience). Maybe that is because <em>Python gives you so much freedom that it is very easy to write bad code</em>.</p>
<p>Please don't just tell me that the libraries are open source and that I therefore should not complain. I contribute to an open source Python project myself, as much as I can. Open source programmers generally care about their code, because it is a subject of personal pride. But the perceived low code quality is a big hurdle for future contributors.</p>
<p><strong>Edit:</strong> I really don't intend to express my "superiority" with this question. It is just that I try to learn and improve my programming. And I find that most of the things I learn make me more effective (like unittests). So I wonder why the experienced programmers writing these libraries do not follow the advice that is given to programming novices. Is it because they are so good that they can afford to cut corners?</p>
http://stackoverflow.com/questions/1603980/best-php-qa-tools5Best php qa toolsAlexandre Victoor2009-10-21T22:15:45Z2009-10-22T00:36:03Z
<p>Hello,</p>
<p>I am looking for qa tools for php. I am used to pmd, findbugs and checkstyle in the java world. Do you know some similar tools for php doing code analysis ?
So far I have found but not tested yet :</p>
<ul>
<li>phplint</li>
<li>pmd's cpd module</li>
<li>PHP_CodeSniffer</li>
</ul>
<p>Thanks in advance for your help</p>
http://stackoverflow.com/questions/1302319/setting-quality-with-imagemagick1Setting quality with imagemagick?Marki2009-08-19T20:02:28Z2009-10-20T22:42:23Z
<p>I use the following code to create a thumbnail on the site:</p>
<pre><code>$small_image = new Imagick($large_path."/".$pic['image']);
$small_image->thumbnailImage(100, 0);
$small_image->writeImage($small_path."/".$pic['image']);
</code></pre>
<p>It sets it's own quality and I tried adding</p>
<pre><code>$small_image->setCompression(imagick::COMPRESSION_JPEG);
$small_image->setCompressionQuality(1);
</code></pre>
<p>But that didn't change a thing. I also tried</p>
<pre><code>$img = new Imagick($small_path."/".$pic['image']);
$img->setCompression(Imagick::COMPRESSION_JPEG);
echo $img->setCompressionQuality(1); // should come out ugly
$img->writeImage();
</code></pre>
<p>But even that didn't change the size with quality 1. Any ideas what I'm doing wrong?</p>
http://stackoverflow.com/questions/1576960/finding-most-commonly-edited-files-in-clearcase2Finding most commonly edited files in clearcase.mR_fr0g2009-10-16T09:01:25Z2009-10-16T23:08:17Z
<p>We are currently planning a quality improvement exercise and i would like to target the most commonly edited files in our clearcase vobs. Since we have just been through a bug fixing phase the most commonly edited files should give a good indication of where the most bug prone code is, and therefore the most in need of quality improvment.</p>
<p>Does anyone know if there is a way of obtaining a top 100 list of most edited files? Preferably this would cover edits that are happening on multiple branches.</p>
http://stackoverflow.com/questions/1525652/groovy-code-analysis-tool2Groovy code analysis toolDon2009-10-06T13:38:17Z2009-10-12T00:21:45Z
<p>Hi,</p>
<p>Are there any good code analysis tools available for Groovy? I'm looking for something similar to FindBugs, PMD, CheckStyle, etc. I may even be able to use some of these tools directly if they work on Java byte code rather than source code. A feature that would be particularly useful is the ability to identify obsolete code, though I realise that this is almost impossible to do with 100% certainty in a dynamic language. However, if the tool could even identify classes/methods that are possibly/probably unreferenced, that would be a good start.</p>
<p>The IntelliJ IDE generates a lot of very useful warnings about unidiomatic Groovy code, but ideally I'm looking for something that I can integrate into my build and generate a report.</p>
<p>Thanks,
Don</p>
http://stackoverflow.com/questions/1529665/why-does-toolbar-icons-in-vb6-looks-worst-in-quality-when-running-as-an-exe1Why does toolbar icons in VB6 looks worst in quality when running as an EXE? melaos2009-10-07T05:32:12Z2009-10-09T07:13:35Z
<p>Hi,
I have a toolbar in a VB6 editor program which has a 24*24 icons in 24bits color.
I put in the photos in a res. resource file and load them into the program via loadImage.</p>
<p>the problem is i can see the icon quality looks good running in debug mode but when i compile the program into an exe, there's a severe degradation going on.</p>
<p>I heard from my senior that there's something inside the visual studio which will automatically decrease the quality of the image inside.</p>
<p>Is this true? and if not, what is happening here?
And more importantly, how do i work around this?</p>
<p>thanks!!</p>
http://stackoverflow.com/questions/12745/how-do-you-handle-poor-quality-code-from-team-members163How do you handle poor quality code from team members?Cade2008-08-15T21:04:16Z2009-10-08T04:40:03Z
<p>I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my fellow members submit is totally lacking of structure, standards, naming convention, etc. Whole code blocks that have been replaced are still left commented out in the final product. I'm not going to get into the actual correctness of the code, but these issues make it virtually impossible to debug when my boss inevitably comes to me to fix my team members' problems before send out their app.. </p>
<p>My question is this, how do you guys handle poor quality code from your team members? If you work in a less structured environment, how do you approach coders about improving the quality of their own code (or your boss to get him to implement some kind of standards/code review)? </p>
<p>Thanks guys. </p>
http://stackoverflow.com/questions/1534139/what-software-quality-model-and-metrics-are-you-using0What software quality model and metrics are you using ?Fred Beringer2009-10-07T20:56:07Z2009-10-07T20:56:07Z
<p>Hi there,</p>
<p>This is a vast area within software development and it can potentially ends up in long debate :-) I've been trying to find the right model and metrics to assess the quality of our software under development (Who didn't at some stage ?). I've settled on a close variation to ISO-9126 as I thought it covers all important aspects of our software, namely: Functionality, Reliability, Usability, Efficiency, Maintainability and Portability. The difficult part is finding the right metrics for each subcharacteristics. I've detailed our thinking in this post:</p>
<p><a href="http://www.fredberinger.com/software-quality-metrics-and-model/" rel="nofollow">http://www.fredberinger.com/software-quality-metrics-and-model/</a></p>
<p>But I still have trouble with some of the metrics. Especially:</p>
<p>Learnability, analysability, testability and replaceability.</p>
<p>Any idea you'd consider for reasonable metrics for these ?</p>
<p>Are you using other interesting model you might want to share with us ?</p>
<p>Fred</p>
http://stackoverflow.com/questions/1060548/software-quality-metrics3Software quality metricsChap2009-06-29T21:05:05Z2009-10-03T12:37:06Z
<p>I was wondering if anyone has experience in metrics used to measure software quality. I know there are code complexity metrics but I'm wondering if there is a specific way to measure how well it actually performs during it's lifetime. I don't mean runtime performance, but rather a measure of the quality. Any suggested tools that would help gather these are welcome too.</p>
<p>Is there measurements to answer these questions: </p>
<ul>
<li>How easy is it to change/enhance the software, robustness</li>
<li>If it is a common/general enough piece of software, how reusable is it</li>
<li>How many defects were associated with the code</li>
<li>Has this needed to be redesigned/recoded</li>
<li>How long has this code been around</li>
<li>Do developers like how the code is designed and implemented</li>
</ul>
<p>Seems like most of this would need to be closely tied with a CM and bug reporting tool. </p>