Bug, er Defect Terminology - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T16:44:46Zhttp://stackoverflow.com/feeds/question/384423http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/384423/bug-er-defect-terminology3Bug, er Defect TerminologyKnox2008-12-21T12:53:01Z2009-06-26T08:53:04Z
<p>As the BigCo I worked for got serious about software development, they encouraged more formal terminology. Instead of <em>bugs</em>, which might randomly just happen, they preferred the term <em>defect</em> which could be prevented. Tongue firmly in cheek, I developed the following guideline:</p>
<h2>Levels of <strong>U</strong>nexpected <strong>S</strong>oftware <strong>E</strong>vents (USE)</h2>
<p>An <strong>U</strong>nverified <strong>F</strong>eature <strong>O</strong>bservation (UFO) is a term that describes an observation of software behavior that has been reported to the development team, but not yet verified. Once verified, the following list describes the event.</p>
<ul>
<li>Enhancement: A USE which provides a definite benefit to the customer</li>
<li>Feature: A USE that is designed to work that way, regardless of the benefit. Note the contradiction. "<a href="http://www.codinghorror.com/blog/archives/001189.html" rel="nofollow">It's not a bug, it's a feature</a>!"</li>
<li>Occurence: A relatively neutral USE in terms of its benefits and drawbacks.</li>
<li>Anomaly: For this use, it is unclear about its potential impact</li>
<li>Millibug: A USE that the development team agrees has some minor drawbacks</li>
<li>Bug: A USE with drawbacks</li>
<li>Megabug: Don't even THINK this term.</li>
</ul>
<p>What terminology do you use for bugs, er defects, both serious and not?</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384436#3844363Answer by Jon Skeet for Bug, er Defect TerminologyJon Skeet2008-12-21T13:04:10Z2008-12-21T13:04:10Z<p>Eric Lippert has a great blog post on this - categorising defects as <a href="http://blogs.msdn.com/ericlippert/archive/2004/04/04/107379.aspx" rel="nofollow">vexing, boneheaded, or fatal</a>.</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384460#3844601Answer by Jorge Córdoba for Bug, er Defect TerminologyJorge Córdoba2008-12-21T13:24:32Z2008-12-21T13:24:32Z<p>Usually where I work we use:</p>
<ul>
<li>Improvement. This category is not a bug, it's just a recommendation, maybe the tester thinks the software should work in a different way or that a certain feature would be interesting. It doesn't violate any requirement and so its implementation is not mandatory.</li>
<li>Cosmetical. This category groups cosmetical errors such as mispelling, translation errors, missalignment, etc</li>
<li>Minor. This is a bug, it's category is minor which means it doesn't affect the usual work with the application but it's still an error.</li>
<li>Major. This is a major bug, it blocks the execution of given requirement but a workaround exits to carry out that requirement (that is, the operation can be made in another way)</li>
<li>Critical. Same as major but not workaround exits or a critical issue is filled if there's a requirement missing.</li>
<li>Blocking. A blocking bug is the kind of bugs that keeps you from being able to run the application (application crashes when doing common operations, big memory leaks, etc)</li>
</ul>
<p>For every category there are guidelines to precisely identify it category. This protects both your client and you and contracts can be stablished to account for the quality of the product. For example, for a given delivery there must be no blocking or critical issues and a given number of major issues (and for example 20 minor make 1 mayor). On the same way, if the user reports an issue then it can be categorized as the user and you agree on the category it belongs (a missing requirement is not Blocking but Critical, if a workaround exits then is just major and so on)</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384469#3844693Answer by joseph.ferris for Bug, er Defect Terminologyjoseph.ferris2008-12-21T13:36:20Z2008-12-21T13:36:20Z<p>We currently are using a minimally modified version of <a href="http://msdn.microsoft.com/en-us/library/bb668964.aspx" rel="nofollow">MSF for Agile Software Development Projects</a> with TFS. The following is from the MSDN Documenation:</p>
<ul>
<li>Bug. Represents a problem or potential problem in your application.</li>
<li>Risk. Represents a possible event or condition that would have a negative impact on your project.</li>
<li>Scenario. Represents a single path of user interaction through the system you are building.</li>
<li>Task. Identifies a specific item of work for a team member to perform.</li>
<li>Quality of Service Requirement. Represents a non-functional requirement such as a security, performance or manageability requirement. </li>
</ul>
<p>We have already started to modify some of the fields related to the items to better fit our workflow and have added a "Code Review" item that can be created as a child of any of the work item type. And by "can be created", I mean "must be created" as we have a check-in policy requiring an approved code review prior to check-in.</p>
<p>On a personal level, I have always hated the term "bug" because it comes with a built-in negative connotation. Regardless of the workflow within a company and what they call a "bug", I always refer to it as a "defect".</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384508#3845080Answer by Joachim Sauer for Bug, er Defect TerminologyJoachim Sauer2008-12-21T14:19:16Z2008-12-21T14:19:16Z<p>Brain-Bug: This bug has sucked the brain out of a significant fraction of the development team while trying to verify, re-produce, analyze and/or fix it.</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384525#3845253Answer by tim for Bug, er Defect Terminologytim2008-12-21T14:38:00Z2008-12-21T14:38:00Z<p>Defect.</p>
<p>Bug, though widely used implies that it is something that is cute and just happens. The fact is, that we need to call it what it is and use appropriate terminology. Defects are injected into the product.</p>
<p>The proliferation of defect tracking tools that have "bug" in the name do nothing to help this.</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384542#3845421Answer by Joachim Sauer for Bug, er Defect TerminologyJoachim Sauer2008-12-21T14:56:55Z2008-12-21T14:56:55Z<p>Term for <em>not</em> having any bugs: <a href="http://www.bugzilla.org/docs/3.0/html/glossary.html#gloss-zarro" rel="nofollow">Zarro Boogs</a></p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384744#3847440Answer by Knox for Bug, er Defect TerminologyKnox2008-12-21T18:14:20Z2008-12-21T20:41:54Z<p>Every development team that is about shipping a product needs to know <strong>Showstopper</strong>, best described in the book <a href="http://rads.stackoverflow.com/amzn/click/0029356717" rel="nofollow">Show Stopper</a> about shipping Windows NT. A Show Stopper is a problem serious enough that the software will not ship with that issue. </p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/384817#3848171Answer by Ather for Bug, er Defect TerminologyAther2008-12-21T19:12:54Z2008-12-21T19:12:54Z<p>Defect. That is the formal term primarily because we use VersionOne which treats world as Stories (enhancements, new features) and defects (software not working as expected). </p>
<p>We informally use bugs. Tracker Items is another term used because that is what defects/bugs are called in another system used previously. Legacies!</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/719361#7193612Answer by crosstalk for Bug, er Defect Terminologycrosstalk2009-04-05T17:46:31Z2009-04-05T17:46:31Z<p>Mistake.</p>
<p>Both "bug" and "defect" ignore the fact that a human caused the problem - bugs just happen, while defects can be in both workmanship (coding) and materials (hardware, libraries, environment, ...). "Defect" also suffers from the "corporate-suit-speak" connotation. "Mistake" highlights that the problem was caused by a developer, while avoiding a blunt assignment of blame, as something like "error" might do.</p>
http://stackoverflow.com/questions/384423/bug-er-defect-terminology/1047980#10479801Answer by StuperUser for Bug, er Defect TerminologyStuperUser2009-06-26T08:28:21Z2009-06-26T08:53:04Z<p>In <a href="http://www.testingstandards.co.uk/bs_7925-1.htm" rel="nofollow">BS 7925-1(Glossary)</a> - Glossary of terms used in software testing:
An error is defined as: “A human action that produces an incorrect result”.
A defect is defined as: “A manifestation of an error in software”.
A failure is defined as: “Deviation of the software from its expected delivery or service”.</p>
<p>With these definitions a causal chain can be seen:
A person makes an error that creates a defect in the software that can cause a failure in operation.</p>
<p>The link of this chain that is reported is the defect present in software.</p>
<p>A defect is identified by a repeatable, identifiable failure of the system to perform in the manner specified and agreed during the detailed Requirement, Specification or Design phases of the project and as outlined in the User Requirement, Function Specification or Software Module Design documents.</p>
<p>A defect is only termed a defect once the failure it causes is proven to be:-<br />
• Reproducible,<br />
• Documented,<br />
• Inconsistent with the approved specifications.</p>
<p>Irreproducible failures are classed as incidents.</p>
<p>In our company once defects are reported they are assigned a Severity (Showstopper, Major, Minor Cosmetic) and a Priority (Urgent, Very High, High, Medium, Low).</p>