<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>xeque</title>
	<atom:link href="http://www.xeque.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xeque.com</link>
	<description>number eight testing</description>
	<pubDate>Wed, 02 Jul 2008 08:24:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Thou shalt perform Excellent Testing</title>
		<link>http://www.xeque.com/2008/06/30/thou-shalt-perform-excellent-testing/</link>
		<comments>http://www.xeque.com/2008/06/30/thou-shalt-perform-excellent-testing/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 05:51:27 +0000</pubDate>
		<dc:creator>Damian</dc:creator>
		
		<category><![CDATA[Testing Guidelines]]></category>

		<category><![CDATA[Testing Methods]]></category>

		<guid isPermaLink="false">http://www.xeque.com/2008/06/30/thou-shalt-perform-excellent-testing/</guid>
		<description><![CDATA[ This is number two in my list of commandments for testers.
It probably goes without saying that actually performing testing will be your main job function. Talking about testing, thinking about testing, planning your test process - these are all very important and very useful things to do, but the primary reason for your continuing [...]]]></description>
			<content:encoded><![CDATA[<p><em><a href="http://www.danklyn.com/webstandards_talk/webstandards.html"><img title="EX-CELLENT" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="141" alt="EX-CELLENT" src="http://www.xeque.com/wp-content/uploads/2008/06/mrburns.jpg" width="140" align="right" border="0" /></a> This is number two in my list of </em><a href="http://www.xeque.com/2008/06/10/the-commandments-of-testing/"><em>commandments for testers</em></a><em>.</em></p>
<p>It probably <a href="http://www.answerbag.com/q_view/467790">goes without saying</a> that actually performing testing will be your main job function. Talking about testing, thinking about testing, planning your test process - these are all very important and very useful things to do, but the primary reason for your <a href="http://www.howstuffworks.com/recession.htm">continuing pay packet</a> is your raising of bugs and highlighting of issues. In other words, go forth and <a href="http://www.ddj.com/development-tools/193005740">break software</a>.</p>
<h3>Thou shalt seek the better bug</h3>
<p>So, you&#8217;ve found a problem. It’s a minor thing - perhaps a screen widget doesn&#8217;t disallow <a href="http://en.wikipedia.org/wiki/Data_validation">an invalid entry</a>. But <a href="http://www.imdb.com/title/tt0133093/quotes">how deep does the rabbit hole go</a>? Does it blindly store the invalid entered value? Is that same dodgy value then retrieved by another process or business function and utilised somewhere it really shouldn&#8217;t be? Is there an external symptom of this case, like a <a href="http://flickr.com/search/?q=somewhat%20alarming&amp;w=all">somewhat alarming</a> error in the system log? Go the whole hog - can you make the application <a href="http://www.miguelcarrasco.net/miguelcarrasco/2006/10/linux_crash_top.html">crash</a>?</p>
<p>You are not <a href="http://en.wikipedia.org/wiki/Peter_Sinclair_(New_Zealand)">Peter Sinclair</a>; never take an application&#8217;s first answer. Find out how much more value you can get out of the bug before you raise it. If nothing else, it provides you with a lot of supporting information and scenarios that can be provided to the development team.</p>
<h3>Thou shalt make thy bug a prime target</h3>
<p>Assuming that the organisation you work for is a rational one, <a href="http://www.answers.com/topic/squeaky-wheel-gets-the-grease">a small bug ain’t gonna get fixed</a> unless someone cares about it. It is your job to find out why someone should care, and demonstrate the <a href="http://xkcd.com/443/">knock-on impacts possible</a>; it&#8217;s almost always better to be able to raise a serious bug than a minor one, and a serious bug warrants more attention by far.</p>
<p>Of course, you have a similar responsibility to <a href="http://www.useit.com/alertbox/20050627.html">reality</a>. If your discovered issue doesn’t actually affect anything, this should be writ large in your report. Again, assuming that your organisation is rational, you aren’t paid on the severity of the issues you raise, so be sensible.</p>
<h3>Thou shalt apply diverse half-measures</h3>
<p>There is another important heuristic to be followed when you&#8217;re testing software: the rule of <a href="http://www.satisfice.com/articles/hrbt.pdf">diverse</a> <a href="http://www.kaner.com/pdfs/test_docs_pnsqc.pdf">half-measures</a>. Essentially, this says that: it&#8217;s better to do more, different kinds of testing to a pretty good level than it is to do one or two kinds of testing perfectly.</p>
<blockquote><p>&quot;This strategic principle derives from the structured complexity of software products. When you test, you are sampling a complex space. No single test technique will sample this space in a way that finds all important problems quickly. Any given test technique may find a lot of bugs at first, but the find-rate curve will flatten out. If you switch to a technique that is sensitive to a different kind of problem, your find rate may well climb again. In terms of overall bug-finding productivity, perform each technique to the point of sufficiently-diminished returns and switch to a new technique.</p>
<p>Diversification has another purpose that is rooted in a puzzle: How is it possible to test a product for months and ship it, only for your users to discover, on the very next day, big problems that you didn&#8217;t know about? A few things could cause this situation. A major cause is tunnel vision. It wasn&#8217;t that you didn&#8217;t test enough; it was that you didn&#8217;t perform the right kind of test. We&#8217;ve seen cases where a company ran hundreds of thousands of test cases and still missed simple obvious problems, because they ran an insufficient variety of tests.&quot; – <a href="http://www.amazon.com/Lessons-Learned-Software-Testing-Kaner/dp/0471081124">the Bible</a></p>
</blockquote>
<p>Even though this heuristic is obviously a deep and considered approach to scalable and effective test management, you may find it useful to glibly sum it up in a way that is more familiar to programmers: <a href="http://www.uie.com/articles/observing/">we</a> <a href="http://groups.google.com/group/netscape.public.mozilla.mail-news/msg/4556affea707e8e7?hl=en&amp;">didn’t</a> <a href="http://www.stickyminds.com/sitewide.asp?Function=edetail&amp;ObjectType=ART&amp;ObjectId=12754">expect</a> <a href="http://www.useit.com/alertbox/designer-user-differences.html">the</a> <a href="http://www.microsoft.com/design/Voices/Detail.aspx?key=making_usable_products">user</a> <a href="http://groups.google.com/group/comp.software.testing/msg/7974b43d3e13a9cf?hl=en&amp;">to</a> <a href="http://groups.google.com/group/alt.religion.computers/msg/0a101da386672ed3?hl=en&amp;">do</a> <a href="http://www.catb.org/jargon/html/R/real-user.html">that</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xeque.com/2008/06/30/thou-shalt-perform-excellent-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thou shalt not take the name of the Tester in vain</title>
		<link>http://www.xeque.com/2008/06/17/thou-shalt-not-take-the-name-of-the-tester-in-vain/</link>
		<comments>http://www.xeque.com/2008/06/17/thou-shalt-not-take-the-name-of-the-tester-in-vain/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 10:43:15 +0000</pubDate>
		<dc:creator>Damian</dc:creator>
		
		<category><![CDATA[Test Professionalism]]></category>

		<category><![CDATA[Testing Guidelines]]></category>

		<guid isPermaLink="false">http://www.xeque.com/2008/06/17/thou-shalt-not-take-the-name-of-the-tester-in-vain/</guid>
		<description><![CDATA[ This is number one in my list of commandments for testers.
Most individuals in the field of software testing have their fingers in many pies – some have come from development, some want to move to management, and some just want to break software until the day they dump core.
However, during a project you must [...]]]></description>
			<content:encoded><![CDATA[<p><em><a href="http://www.greataustralianpieco.com/pies_content.html"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="pie_mince_cheese" src="http://www.xeque.com/wp-content/uploads/2008/06/pie-mince-cheese.jpg" border="0" alt="pie_mince_cheese" width="174" height="134" align="right" /></a> This is number one in my list of <a href="http://www.xeque.com/2008/06/10/the-commandments-of-testing/">commandments for testers</a>.</em></p>
<p>Most individuals in the field of software testing have their fingers in many pies – <a href="http://www.pettichord.com/">some</a> have come from development, <a href="http://www.satisfice.com/blog/">some</a> want to move to management, and <a href="http://www.satisfice.com/kaner/">some</a> just want to <a href="http://www.amazon.com/How-Break-Software-Practical-Testing/dp/0201796198/ref=sr_1_2?ie=UTF8&amp;s=books&amp;qid=1213693853&amp;sr=1-2">break software</a> until the day they dump core.</p>
<p>However, during a project you must be a <a href="http://www.studlycaps.com/">Tester</a> first and foremost. It is not your job to worry about customer management, development management, requirements management, watering the plants, etc., etc. Obviously, if you can ease the way of the project by assisting in those areas, then do so, but be aware of your prime driver.</p>
<p>There is a fairly obvious caveat here that the two upcoming sub-commandments refer only to the role of a Tester within a project - wanting to become a Project Manager or Technical Lead, career-wise, is both acceptable and <a href="http://www.despair.com/potential.html">admirable</a>. Acting like either of those roles within a project is a <a href="http://fortsanders.net/node/96">generally</a> <a href="http://www.comixconnection.com/2007/06/weekend-comics-chat-open-thread-spider.html">bad</a> <a href="http://lukehoughton.com/2008/03/16/its-ok-to-fail/">idea</a>.</p>
<p>Secondly, all Testers should be proud of the role that they inhabit and the value they provide. We are a combination of expert user, implementer, designer, witch doctor, and <a href="http://en.wikipedia.org/wiki/Bullshit!">faux-psychic</a>. Never, ever, let someone refer to you - or refer to yourself - as &#8216;just a tester.&#8217; Perhaps invest in a <a href="http://memory-alpha.org/en/wiki/The_Arsenal_of_Freedom#Memorable_Quotes">Stick of Whack</a> to be kept behind your desk for these <a href="http://www.basicinstructions.net/">lessons</a>.</p>
<h3>Thou shalt not covet the role of Project Manager</h3>
<p><a href="http://darthside.blogspot.com/">Project Managers</a> are there to, unsurprisingly, manage the project. They worry about resources, timeframes, work allocations, and other <a href="http://www.merriam-webster.com/dictionary/profit">bits and bobs</a>. Testers, on the other hand, do not need to worry about this at all, except to communicate clearly with said Manager about their needs for a successful test effort and ensure that enough information flows upwards to keep sundry other managers <a href="http://www.despair.com/quality.html">happy</a>.</p>
<p>Managers tell you what to do. You tell the test team <a href="http://www.sesameworkshop.org/parents/advice/article.php?contentId=109940">how to do it</a>.</p>
<h3>Thou shalt not covet the role of Technical Lead</h3>
<p>As Testers, we have to ensure that we keep a firm delineation between our function and the Technical Lead or Developer functions. In short, although we can be considered to be <a href="http://www.badusability.com/">usability</a>, <a href="http://thedailywtf.com/Series/Error_0x27_d.aspx">functionality</a>, or <a href="http://blog.slickedit.com/?p=63">requirements</a> experts, we must be careful not to cross the line into <a href="http://en.wikipedia.org/wiki/Anti-pattern">design</a>, as tempting as it may be sometimes.</p>
<p>We can advise. We can provide references of good practices, concepts, or examples. We can recommend or support one course of action, or point out flaws in another; that&#8217;s all required behaviour. We can&#8217;t do wholesale design, though; that&#8217;s outside the scope of our role.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xeque.com/2008/06/17/thou-shalt-not-take-the-name-of-the-tester-in-vain/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Commandments of Testing</title>
		<link>http://www.xeque.com/2008/06/10/the-commandments-of-testing/</link>
		<comments>http://www.xeque.com/2008/06/10/the-commandments-of-testing/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 09:15:27 +0000</pubDate>
		<dc:creator>Damian</dc:creator>
		
		<category><![CDATA[Testing Guidelines]]></category>

		<guid isPermaLink="false">http://www.xeque.com/2008/06/10/the-commandments-of-testing/</guid>
		<description><![CDATA[
Thou shalt not take the name of the Tester in vain
Thou shalt perform Excellent Testing
Thou shalt plan Efficiently
Observe the Milestone and keep it holy
Honour thy Customer and thy Company
Thou shalt not be Nice
Thou shalt learn from History but thou shalt not Repeat it
Thou shalt document Sufficiently

These concepts represent what we as testers should be capable [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.xeque.com/wp-content/uploads/2008/06/commandments1.jpg" border="0" alt="" width="174" height="117" align="right" /><a href="http://www.xeque.com/2008/06/17/thou-shalt-not-take-the-name-of-the-tester-in-vain/">Thou shalt not take the name of the Tester in vain</a></li>
<li><a href="http://www.xeque.com/2008/06/30/thou-shalt-perform-excellent-testing/">Thou shalt perform Excellent Testing</a></li>
<li>Thou shalt plan Efficiently</li>
<li>Observe the Milestone and keep it holy</li>
<li>Honour thy Customer and thy Company</li>
<li>Thou shalt not be Nice</li>
<li>Thou shalt learn from History but thou shalt not Repeat it</li>
<li>Thou shalt document Sufficiently</li>
</ol>
<p>These concepts represent what we as testers should be capable of and comfortable doing. The role of a test professional, predominantly, is to ensure that the quality and suitability of a product going out the door is known. Not assumed, not estimated, but known. Contrary to popular belief, testers are not responsible for the quality or suitability of a release - we are primarily responsible for communicating and quantifying that information of the release to all concerned parties.</p>
<p>We must be happy with our station, clear on our mission, effective in our practices, and do <em>just</em> as much process-type stuff as we have to - and no more.</p>
<p>Keep these commandments in mind - and if you&#8217;re wondering why there ain&#8217;t ten of &#8216;em - well, let&#8217;s let <a href="http://www.amazon.com/How-Break-Software-Practical-Testing/dp/0201796198/">James</a> explain it:</p>
<blockquote><p>We might assume that just because they are &#8216;commandments,&#8217; there have to be ten of them. Since we know the assumption to be true (because that&#8217;s the nature of an assumption) then we convince ourselves that there is no need to ever bother checking whether the assumption may become false.</p>
<p>Assumptions are a very bad thing for software testers. Assumptions can reduce productivity and undermine an otherwise good project. Assumptions can even undermine a career. Good testers can never assume anything. In fact, the reason we are called testers is that we test assumptions for a living. No assumption is true until we test and verify that it is true. No assumption is false until we test that it is false.</p>
<p>Any tester who assumes anything about anything should consider taking up development for a career. After all, what tester hasn’t heard a developer say &#8216;Well, we assumed the user would never do that!&#8217; Assumptions must always be tested. I once heard a test consultant give the advice: &#8220;Expect the unexpected.&#8221; With this I disagree; instead, expect nothing, only then will you find what you seek. - <a href="http://www.stickyminds.com/sitewide.asp?Function=edetail&amp;ObjectType=COL&amp;ObjectId=6521">James Whittaker</a></p></blockquote>
<p>We should borrow and amend a credo that developers have long known: <a href="http://en.wikipedia.org/wiki/Considered_harmful">ASSUMPTIONS</a> <a href="http://www.u.arizona.edu/~rubinson/copyright_violations/Go_To_Considered_Harmful.html">CONSIDERED</a> <a href="http://en.wikipedia.org/wiki/Snowclone">HARMFUL</a>. If it makes you feel better, you can just imagine that <a href="http://www.merriam-webster.com/dictionary/assume">I</a> <a href="http://www1.agric.gov.ab.ca/$department/deptdocs.nsf/all/agdex598">cracked</a> <a href="http://dictionary.reference.com/search?q=you&amp;db=*">the</a> <a href="http://support.microsoft.com/ph/6519">donkey</a> <a href="http://www.imdb.com/title/tt0063374/">joke</a>, but it&#8217;s not actually going to happen in my lifetime.</p>
<p>The next few entries will go into each of these commandments in more detail.</p>
<p>(Oh, and if you&#8217;re wondering why there&#8217;s no obvious take on false witness? Well, really – if I have to specify that you shouldn&#8217;t <a href="http://www.managementhelp.org/sales/sales.htm">lie</a> while doing your job, perhaps it&#8217;s time to just <a href="http://youtube.com/watch?v=gDW_Hj2K0wo&amp;feature=related">give up</a> on humanity in general. Next you&#8217;ll be saying &#8220;hey, what about murder? Murder&#8217;s HOT.&#8221;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xeque.com/2008/06/10/the-commandments-of-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://www.xeque.com/2008/04/16/hello-world/</link>
		<comments>http://www.xeque.com/2008/04/16/hello-world/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 22:47:16 +0000</pubDate>
		<dc:creator>Damian</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.xeque.com/?p=1</guid>
		<description><![CDATA[ Welcome to xeque. The purpose of this site is to provide practical, honest advice and insight into testing methodology and practice. The business world and the internet in general is filled with enough self-important words and high-falutin&#8217; management-types.
You won&#8217;t find any ivory tower best practices here. Going by the wise words of the masters, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.xeque.com/wp-content/uploads/2008/06/welcome-mat1.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" title="welcome_mat" src="http://www.xeque.com/wp-content/uploads/2008/06/welcome-mat-thumb1.jpg" border="0" alt="welcome_mat" width="174" height="125" align="right" /></a> Welcome to xeque. The purpose of this site is to provide practical, honest advice and insight into testing methodology and practice. The business world and the internet in general is filled with enough self-important words and high-falutin&#8217; management-types.</p>
<p>You won&#8217;t find any <a href="http://en.wikipedia.org/wiki/IEEE_829">ivory tower</a> best practices here. Going by the <a href="http://www.testinglessons.com/">wise words of the masters</a>, <a href="http://en.wikipedia.org/wiki/Best_practice">over</a>-<a href="http://en.wikipedia.org/wiki/Enterprise_architecture">used</a> <a href="http://en.wikipedia.org/wiki/List_of_buzzwords">catchphrases</a> are right out the door too.</p>
<p>In line with the real-world, practical approach taken, there may even be occasional naughty words. Management apologises in advance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xeque.com/2008/04/16/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
