<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Do not register bugs, Fix them!</title>
	<atom:link href="http://technology.amis.nl/2010/10/28/do-not-register-bugs-fix-them/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2010/10/28/do-not-register-bugs-fix-them/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=do-not-register-bugs-fix-them</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Stanislav Petrinic</title>
		<link>http://technology.amis.nl/2010/10/28/do-not-register-bugs-fix-them/#comment-6384</link>
		<dc:creator>Stanislav Petrinic</dc:creator>
		<pubDate>Fri, 21 Jan 2011 12:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=8697#comment-6384</guid>
		<description><![CDATA[On larger SW projects the testers are often organized in a separate team. Reasons are:
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Test bed can consist of expensive HW equipment, testing  tools sometimes require expensive licenses. It would be too expensive to make all that equipment available to each (or most) of the developers. So, the test bed is centralised and used by several projects.
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Skills needed for setting the test bed and using test tools can differ from the skills that an average developer has. Therefore you are better off with a skilled testing team.
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Developers tend to be subjective towards their own code. It is good to get an independent view from a tester.
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Developers are usually familiar only with their part of SW and sometimes the parts that directly interact with it. So they can write unit tests for their code and sometimes even make some integration tests, but that&#039;s it. You also need complete integration tests (especially if you have a system which involves several servers, clients etc.) , performance tests, reliability tests and long-run tests. Developers usually have no time, knowledge and resources to execute this kind of tests.
Testing is usually done on a release e.g. on a weekly or monthly basis (or when a project manager decides to start a testing cycle). I am not refering to usual unit tests that are done regularly by the developers. To broaden this view, customers can also be viewed as testers and they need to have a way to register the issues they found.

Having the above in mind, I would like to comment your views on issue management system:
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Â»To prove you have tested the application?Â« Yes, partially - use the bug tracking system to automatically create a part of test report (e.g. create a list of solved and unresolved issues). This would inform all involved parties about issues that were tested and what are the results. It is not only the tester and the developer that need to know what is going on, as you suggested.
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Â»To remember the issue for later resolution?Â« Yes. It can happen that you (as a developer) get several issue requests in a single day and you simply can not deal with all of them at once. And again, it is not only the tester and a developer that need to know about an issue. Also the customers can see that some issue is already known (and maybe planned for a solution) which can significantly diminish the time they spend about the issue (see the example below).
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Â»No, when the issue resolution can wait is not important and you do not have to register it. This is not an issue but a feature request.Â« I think it is Ok to use the same system for bugs AND for feature requests.  Somebody else (e.g. a customer, a product manager etc.) can also decide how important an issue really is and if it should be marked as a bug or a feature request. So, as a tester, you should also register issues that you think have lower priority.
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Â»To create release notes? No, release notes should contain a list of new or changed functionality and instructions for usage. Not a list of resolved issues. The readers of the release notes are not interested in specific bugs. They want to know if the new functionality is included. They expect issues from the previous release to be resolved.Â« Well, sometimes the readers need to know which bugs were solved. How can you expect that all issues are solved with a new release? E.g. we had an issue with a piece of Java code. At the beginning it was not clear if the problem is in our code or some 3rd party library we used or in JVM itself. Pretty soon we found that issue described in Java SE issue tracking system and stopped working on the issue. In one of the next releases the issue was solved and we could see that in the release notes. In fact, I think that most of the popular libraries, frameworks and platforms have a lot of known issues and in lots of cases they are not solved in the next release.
&lt;!--[if !supportLists]--&gt;Â· &lt;!--[endif]--&gt;Â»TheÂ resolution of the bugÂ willÂ alsoÂ include a unit test .Â This testÂ willÂ failÂ when theÂ problemÂ occurs theÂ second time.Â« This is true only for the bugs that can be tested with a unit test. That is not always the case.

To conclude: I think it is better to fix without tracking all the bugs that are found by the developers (or by the testers that are closely connected to the development team), especially if the functionality has not yet been released to customers. In other cases it is better to track also. Without an issue management system all you have is e-mail, excel sheets or post-it memos. Which, in my experience, don&#039;t work for larger projects.
Â ]]></description>
		<content:encoded><![CDATA[<p>On larger SW projects the testers are often organized in a separate team. Reasons are:<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Test bed can consist of expensive HW equipment, testing  tools sometimes require expensive licenses. It would be too expensive to make all that equipment available to each (or most) of the developers. So, the test bed is centralised and used by several projects.<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Skills needed for setting the test bed and using test tools can differ from the skills that an average developer has. Therefore you are better off with a skilled testing team.<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Developers tend to be subjective towards their own code. It is good to get an independent view from a tester.<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Developers are usually familiar only with their part of SW and sometimes the parts that directly interact with it. So they can write unit tests for their code and sometimes even make some integration tests, but that&#8217;s it. You also need complete integration tests (especially if you have a system which involves several servers, clients etc.) , performance tests, reliability tests and long-run tests. Developers usually have no time, knowledge and resources to execute this kind of tests.<br />
Testing is usually done on a release e.g. on a weekly or monthly basis (or when a project manager decides to start a testing cycle). I am not refering to usual unit tests that are done regularly by the developers. To broaden this view, customers can also be viewed as testers and they need to have a way to register the issues they found.</p>
<p>Having the above in mind, I would like to comment your views on issue management system:<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Â»To prove you have tested the application?Â« Yes, partially &#8211; use the bug tracking system to automatically create a part of test report (e.g. create a list of solved and unresolved issues). This would inform all involved parties about issues that were tested and what are the results. It is not only the tester and the developer that need to know what is going on, as you suggested.<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Â»To remember the issue for later resolution?Â« Yes. It can happen that you (as a developer) get several issue requests in a single day and you simply can not deal with all of them at once. And again, it is not only the tester and a developer that need to know about an issue. Also the customers can see that some issue is already known (and maybe planned for a solution) which can significantly diminish the time they spend about the issue (see the example below).<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Â»No, when the issue resolution can wait is not important and you do not have to register it. This is not an issue but a feature request.Â« I think it is Ok to use the same system for bugs AND for feature requests.  Somebody else (e.g. a customer, a product manager etc.) can also decide how important an issue really is and if it should be marked as a bug or a feature request. So, as a tester, you should also register issues that you think have lower priority.<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Â»To create release notes? No, release notes should contain a list of new or changed functionality and instructions for usage. Not a list of resolved issues. The readers of the release notes are not interested in specific bugs. They want to know if the new functionality is included. They expect issues from the previous release to be resolved.Â« Well, sometimes the readers need to know which bugs were solved. How can you expect that all issues are solved with a new release? E.g. we had an issue with a piece of Java code. At the beginning it was not clear if the problem is in our code or some 3rd party library we used or in JVM itself. Pretty soon we found that issue described in Java SE issue tracking system and stopped working on the issue. In one of the next releases the issue was solved and we could see that in the release notes. In fact, I think that most of the popular libraries, frameworks and platforms have a lot of known issues and in lots of cases they are not solved in the next release.<br />
<!--[if !supportLists]-->Â· <!--[endif]-->Â»TheÂ resolution of the bugÂ willÂ alsoÂ include a unit test .Â This testÂ willÂ failÂ when theÂ problemÂ occurs theÂ second time.Â« This is true only for the bugs that can be tested with a unit test. That is not always the case.</p>
<p>To conclude: I think it is better to fix without tracking all the bugs that are found by the developers (or by the testers that are closely connected to the development team), especially if the functionality has not yet been released to customers. In other cases it is better to track also. Without an issue management system all you have is e-mail, excel sheets or post-it memos. Which, in my experience, don&#8217;t work for larger projects.<br />
Â </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robbrecht van Amerongen</title>
		<link>http://technology.amis.nl/2010/10/28/do-not-register-bugs-fix-them/#comment-6383</link>
		<dc:creator>Robbrecht van Amerongen</dc:creator>
		<pubDate>Fri, 29 Oct 2010 13:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=8697#comment-6383</guid>
		<description><![CDATA[&lt;p&gt;
&lt;p style=&quot;line-height: 14.25pt; background: white;&quot;&gt;&lt;span style=&quot;font-size: 10.0pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;; color: black; mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt;#Remark: Â Currently it is not possible to comment anonymous. You have to register and login to the blog to enter your comments. (on the top of the left menu). This bug is logged in our jira system #fail. &lt;span style=&quot;mso-spacerun: yes;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-US;&quot; lang=&quot;EN-US&quot;&gt; &lt;/span&gt;&lt;/p&gt;
&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[</p>
<p style="line-height: 14.25pt; background: white;"><span style="font-size: 10.0pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;; color: black; mso-ansi-language: EN-US;" lang="EN-US">#Remark: Â Currently it is not possible to comment anonymous. You have to register and login to the blog to enter your comments. (on the top of the left menu). This bug is logged in our jira system #fail. <span style="mso-spacerun: yes;"> </span></span></p>
<p class="MsoNormal"><span style="mso-ansi-language: EN-US;" lang="EN-US"> </span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robbrecht van Amerongen</title>
		<link>http://technology.amis.nl/2010/10/28/do-not-register-bugs-fix-them/#comment-6382</link>
		<dc:creator>Robbrecht van Amerongen</dc:creator>
		<pubDate>Fri, 29 Oct 2010 13:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=8697#comment-6382</guid>
		<description><![CDATA[&lt;p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 10.0pt;&quot;&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; mso-ansi-language: EN;&quot; lang=&quot;EN&quot;&gt;Youâ€™veÂ hit theÂ problem head-on.&lt;span style=&quot;mso-spacerun: yes;&quot;&gt; &lt;/span&gt;Why doÂ you want toÂ knowÂ what has beenÂ doneÂ with a bug? IÂ shouldÂ be resolved.Â NotÂ Â managed and traced.&lt;span style=&quot;mso-spacerun: yes;&quot;&gt; &lt;/span&gt;TheÂ resolution of the bugÂ willÂ alsoÂ include a unit test .Â This testÂ willÂ failÂ when theÂ problemÂ occurs theÂ second time.Â WhenÂ you want to preserveÂ what wasÂ done toÂ resolve the issue,Â use aÂ wikiÂ or aÂ technicalÂ FAQ list.Â This is moreÂ effectiveÂ thanÂ searching inÂ an issue management system.Â ExcessiveÂ administrationÂ willÂ alsoÂ lead to chaos. &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-fareast-font-family: &quot;Times New Roman&quot;;&quot;&gt; &lt;/span&gt;&lt;/p&gt;
&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[</p>
<p class="MsoNormal" style="margin-bottom: 10.0pt;"><span style="font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; mso-ansi-language: EN;" lang="EN">Youâ€™veÂ hit theÂ problem head-on.<span style="mso-spacerun: yes;"> </span>Why doÂ you want toÂ knowÂ what has beenÂ doneÂ with a bug? IÂ shouldÂ be resolved.Â NotÂ Â managed and traced.<span style="mso-spacerun: yes;"> </span>TheÂ resolution of the bugÂ willÂ alsoÂ include a unit test .Â This testÂ willÂ failÂ when theÂ problemÂ occurs theÂ second time.Â WhenÂ you want to preserveÂ what wasÂ done toÂ resolve the issue,Â use aÂ wikiÂ or aÂ technicalÂ FAQ list.Â This is moreÂ effectiveÂ thanÂ searching inÂ an issue management system.Â ExcessiveÂ administrationÂ willÂ alsoÂ lead to chaos. </span></p>
<p class="MsoNormal"><span style="mso-fareast-font-family: &quot;Times New Roman&quot;;"> </span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frans_t</title>
		<link>http://technology.amis.nl/2010/10/28/do-not-register-bugs-fix-them/#comment-6381</link>
		<dc:creator>frans_t</dc:creator>
		<pubDate>Fri, 29 Oct 2010 13:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=8697#comment-6381</guid>
		<description><![CDATA[&lt;strong&gt;&quot;I have read it, and my opinion I fully disagree with you. How will you ever be able trace back what has been done with a bug. What will you do when in a later stage it turns out that a bug which was supposed to be solved, is still in the software? How will you trace back what had been done to fix the problem the first time. How can you prevent that the second time that a programmer is trying to fix the problem, he is not making the same mistake as the first one if you have not registered anything? Chaos leads to chaos is my opinion.... &quot;&lt;/strong&gt;]]></description>
		<content:encoded><![CDATA[<p><strong>&#8220;I have read it, and my opinion I fully disagree with you. How will you ever be able trace back what has been done with a bug. What will you do when in a later stage it turns out that a bug which was supposed to be solved, is still in the software? How will you trace back what had been done to fix the problem the first time. How can you prevent that the second time that a programmer is trying to fix the problem, he is not making the same mistake as the first one if you have not registered anything? Chaos leads to chaos is my opinion&#8230;. &#8220;</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco Gralike</title>
		<link>http://technology.amis.nl/2010/10/28/do-not-register-bugs-fix-them/#comment-6380</link>
		<dc:creator>Marco Gralike</dc:creator>
		<pubDate>Fri, 29 Oct 2010 08:52:16 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=8697#comment-6380</guid>
		<description><![CDATA[&lt;p&gt;Amici, I completely disagree regarding this blogpost regarding the points of not registring / tracking any bugs anymore. What I read here in this post that you have a problem regarding that bug tracking is not &quot;efficiently&quot; done, but I don&#039;t read any reasons why you shouldn&#039;t.

IÂ my mind bug tracking, also in the fast lifecycle of agile projects, can add to the quality of work due to that you also &quot;measure&quot; (!) those issues viaÂ a system. The reasons you mention for complete dismissal are reasons that are based on the fact thatÂ theÂ WAY we do itÂ Â isn&#039;t efficient. So optimize that.

Complete dismisal doesn&#039;t measure, give you the data about why bugs always happen on the same topic and maybe indicate a member in your team with the need for some extra training and/or Â support in certain area&#039;s. And by the way &quot;creating functionality&quot; that everytime has bugs is stillÂ a &quot;non functionality&quot; being created.Â  A bug tracking system gives you insight in processes in your team and your development live cycle. Bugs should be closed with solutions in whatever setting so people remember how it was solved and how it maybe effectÂ otherÂ erea&#039;s of the product and or product livecycle.

Also it is a way of communicating with a customer, a developer, a project member about how this should work, why it doesn&#039;t work, what is actually expected in the realworld. I am a human and I forget things. A bug tracking system is can be used for the single point of truth regarding what was agreed.

Of course there are other means of doing some of this stuff, but as said, you have only written down IMHO why a bug registration is inefficient, not agile enough, not fast enough, not good enough for communication. So why not just improve the software instead of completely dismissing the reasons people created a bug tracking system/process software in the first place.

Administrator on whatever level have also to keep the system/software alive after it has been handed over. A bug tracking system is sometimes invaluable regarding the information how things were done the way it was done.

The Oracle database has a &quot;wait interface&quot;, extra code which keeps track in the Oracle database how long things need to execute and finish. Someone from Oracle was once asked, &quot;Why was it implemented in the first place, doesn&#039;t it make the database slower all this extra book keeping ? This time and processing could have been used for the actual code to finish&quot;. His reply wasÂ along the lines of &quot;The database is nowadays a factor XX faster because it helped us to measure, identifyÂ and improve what we Â needed to improve&quot;.

If you don&#039;t measure, you will never know if your agile approach is better than the &quot;other&quot; way of doing it.

I say. Automate, improve the way of gathering this information and its quality. I know for sure that software support and administration people would greatly benefit from all this information gathered during the software cycle way things were done the way they were done while the agile team was communicating and discussing the functionality they have delivered.

There was a reason why people started creating bug tracking systems; there are people out there that earn a living creating it. If it didn&#039;t sell, than there wouldn&#039;t be a reason. I say, find out the reason, implement and improveÂ the way of doing it or dismiss the reason within a certain context, but...

If you don&#039;t measure, you don&#039;t know and if you don&#039;t know my arguement is as solid as yours regarding pro or contra. Don&#039;t guess, prove it.&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Amici, I completely disagree regarding this blogpost regarding the points of not registring / tracking any bugs anymore. What I read here in this post that you have a problem regarding that bug tracking is not &#8220;efficiently&#8221; done, but I don&#8217;t read any reasons why you shouldn&#8217;t.</p>
<p>IÂ my mind bug tracking, also in the fast lifecycle of agile projects, can add to the quality of work due to that you also &#8220;measure&#8221; (!) those issues viaÂ a system. The reasons you mention for complete dismissal are reasons that are based on the fact thatÂ theÂ WAY we do itÂ Â isn&#8217;t efficient. So optimize that.</p>
<p>Complete dismisal doesn&#8217;t measure, give you the data about why bugs always happen on the same topic and maybe indicate a member in your team with the need for some extra training and/or Â support in certain area&#8217;s. And by the way &#8220;creating functionality&#8221; that everytime has bugs is stillÂ a &#8220;non functionality&#8221; being created.Â  A bug tracking system gives you insight in processes in your team and your development live cycle. Bugs should be closed with solutions in whatever setting so people remember how it was solved and how it maybe effectÂ otherÂ erea&#8217;s of the product and or product livecycle.</p>
<p>Also it is a way of communicating with a customer, a developer, a project member about how this should work, why it doesn&#8217;t work, what is actually expected in the realworld. I am a human and I forget things. A bug tracking system is can be used for the single point of truth regarding what was agreed.</p>
<p>Of course there are other means of doing some of this stuff, but as said, you have only written down IMHO why a bug registration is inefficient, not agile enough, not fast enough, not good enough for communication. So why not just improve the software instead of completely dismissing the reasons people created a bug tracking system/process software in the first place.</p>
<p>Administrator on whatever level have also to keep the system/software alive after it has been handed over. A bug tracking system is sometimes invaluable regarding the information how things were done the way it was done.</p>
<p>The Oracle database has a &#8220;wait interface&#8221;, extra code which keeps track in the Oracle database how long things need to execute and finish. Someone from Oracle was once asked, &#8220;Why was it implemented in the first place, doesn&#8217;t it make the database slower all this extra book keeping ? This time and processing could have been used for the actual code to finish&#8221;. His reply wasÂ along the lines of &#8220;The database is nowadays a factor XX faster because it helped us to measure, identifyÂ and improve what we Â needed to improve&#8221;.</p>
<p>If you don&#8217;t measure, you will never know if your agile approach is better than the &#8220;other&#8221; way of doing it.</p>
<p>I say. Automate, improve the way of gathering this information and its quality. I know for sure that software support and administration people would greatly benefit from all this information gathered during the software cycle way things were done the way they were done while the agile team was communicating and discussing the functionality they have delivered.</p>
<p>There was a reason why people started creating bug tracking systems; there are people out there that earn a living creating it. If it didn&#8217;t sell, than there wouldn&#8217;t be a reason. I say, find out the reason, implement and improveÂ the way of doing it or dismiss the reason within a certain context, but&#8230;</p>
<p>If you don&#8217;t measure, you don&#8217;t know and if you don&#8217;t know my arguement is as solid as yours regarding pro or contra. Don&#8217;t guess, prove it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
