<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Software Quality Assurance</title>
	<atom:link href="http://sqahelp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sqahelp.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 14 May 2011 12:46:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sqahelp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Software Quality Assurance</title>
		<link>http://sqahelp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sqahelp.wordpress.com/osd.xml" title="Software Quality Assurance" />
	<atom:link rel='hub' href='http://sqahelp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Test-driven development</title>
		<link>http://sqahelp.wordpress.com/2010/02/02/test-driven-development/</link>
		<comments>http://sqahelp.wordpress.com/2010/02/02/test-driven-development/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 07:59:24 +0000</pubDate>
		<dc:creator>Ammad Ghauri</dc:creator>
				<category><![CDATA[SQA]]></category>
		<category><![CDATA[Assurance]]></category>
		<category><![CDATA[black box]]></category>
		<category><![CDATA[Bug life Cycle]]></category>
		<category><![CDATA[Bug report]]></category>
		<category><![CDATA[Bug tracking]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Functionality testing]]></category>
		<category><![CDATA[integration testing]]></category>
		<category><![CDATA[Penetration testing]]></category>
		<category><![CDATA[Performance testing]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Quality]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[security testing]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Software Quality Assurance]]></category>
		<category><![CDATA[SQl injection]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Test Driven Development]]></category>
		<category><![CDATA[Testing Techinques]]></category>
		<category><![CDATA[Testing Techniques]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Type of testing]]></category>
		<category><![CDATA[Types of QA]]></category>
		<category><![CDATA[types of testing]]></category>
		<category><![CDATA[usability testing]]></category>
		<category><![CDATA[web testing]]></category>
		<category><![CDATA[white box]]></category>

		<guid isPermaLink="false">http://sqahelp.wordpress.com/?p=62</guid>
		<description><![CDATA[Test-driven development (TDD) is a software development technique that relies on the repetition of a very short development cycle: First the developer writes a failing automated test case that defines a desired improvement or new function, then produces code to pass that test and finally refactors the new code to acceptable standards. Kent Beck, who is credited with having [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=62&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Test-driven development</strong> (TDD) is a software development technique that relies on the repetition of a very short development cycle: First the developer writes a failing automated test case that defines a desired improvement or new function, then produces code to pass that test and finally refactors the new code to acceptable standards. Kent Beck, who is credited with having developed or &#8216;rediscovered&#8217; the technique, stated in 2003 that TDD encourages simple designs and inspires confidence.</p>
<p>Test-driven development is related to the test-first programming concepts of extreme programming, begun in 1999, but more recently has created more general interest in its own right.Programmers also apply the concept to improving and debugging legacy code developed with older techniques.</p>
<h2>Test-driven development cycle</h2>
<p><img src="http://upload.wikimedia.org/wikipedia/en/9/9c/Test-driven_development.PNG" alt="File:Test-driven development.PNG" /></p>
<h3>1. Add a test</h3>
<h3>2. Run all tests and see if the new one fails</h3>
<h3>3. Write some code</h3>
<h3>4. Run the automated tests and see them succeed</h3>
<h3>5. Refactor code</h3>
<h3>Repeat:</h3>
<p>Starting with another new test, the cycle is then repeated to push forward the functionality. The size of the steps should always be small, with as few as 1 to 10 edits between each test run. If new code does not rapidly satisfy a new test, or other tests fail unexpectedly, the programmer should undo or revert in preference to excessive debugging. Continuous Integration helps by providing revertible checkpoints. When using external libraries it is important not to make increments that are so small as to be effectively merely testing the library itself, unless there is some reason to believe that the library is buggy or is not sufficiently feature-complete to serve all the needs of the main program being written.</p>
<h2>Development style</h2>
<p>There are various aspects to using test-driven development, for example the principles of &#8220;keep it simple, stupid&#8221; (KISS) and &#8220;You ain&#8217;t gonna need it&#8221; (YAGNI). By focusing on writing only the code necessary to pass tests, designs can be cleaner and clearer than is often achieved by other methods. In <em>Test-Driven Development by Example</em> Kent Beck also suggests the principle &#8220;Fake it, till you make it&#8221;.</p>
<p>To achieve some advanced design concept (such as a design pattern), tests are written that will generate that design. The code may remain simpler than the target pattern, but still pass all required tests. This can be unsettling at first but it allows the developer to focus only on what is important.</p>
<p><strong>Write the tests first</strong>. The tests should be written before the functionality that is being tested. This has been claimed to have two benefits. It helps ensure that the application is written for testability, as the developers must consider how to test the application from the outset, rather than worrying about it later. It also ensures that tests for every feature will be written. When writing feature-first code, there is a tendency by developers and the development organisations to push the developer onto the next feature, neglecting testing entirely.</p>
<p><strong>First fail the test cases</strong>. The idea is to ensure that the test really works and can catch an error. Once this is shown, the underlying functionality can be implemented. This has been coined the &#8220;test-driven development mantra&#8221;, known as red/green/refactor where red means <em>fail</em>and green is <em>pass</em>.</p>
<p>Test-driven development constantly repeats the steps of adding test cases that fail, passing them, and refactoring. Receiving the expected test results at each stage reinforces the programmer&#8217;s mental model of the code, boosts confidence and increases productivity.</p>
<p>Advanced practices of test-driven development can lead to Acceptance Test-driven development (ATDD) where the criteria specified by the customer are automated into acceptance tests, which then drive the traditional unit test-driven development (UTDD) process.This process ensures the customer has an automated mechanism to decide whether the software meets their requirements. With ATDD, the development team now has a specific target to satisfy, the acceptance tests, which keeps them continuously focused on what the customer really wants from that user story.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqahelp.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqahelp.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqahelp.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqahelp.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqahelp.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqahelp.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqahelp.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqahelp.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqahelp.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqahelp.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqahelp.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqahelp.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqahelp.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqahelp.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=62&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqahelp.wordpress.com/2010/02/02/test-driven-development/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00bb71a79a9315aef16ce9748c6acae2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammadghauri</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/en/9/9c/Test-driven_development.PNG" medium="image">
			<media:title type="html">File:Test-driven development.PNG</media:title>
		</media:content>
	</item>
		<item>
		<title>WET Web Tester</title>
		<link>http://sqahelp.wordpress.com/2010/02/02/wet-web-tester/</link>
		<comments>http://sqahelp.wordpress.com/2010/02/02/wet-web-tester/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 07:44:21 +0000</pubDate>
		<dc:creator>Ammad Ghauri</dc:creator>
				<category><![CDATA[SQA]]></category>
		<category><![CDATA[Assurance]]></category>
		<category><![CDATA[black box]]></category>
		<category><![CDATA[Bug life Cycle]]></category>
		<category><![CDATA[Bug report]]></category>
		<category><![CDATA[Bug tracking]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Functionality testing]]></category>
		<category><![CDATA[integration testing]]></category>
		<category><![CDATA[Penetration testing]]></category>
		<category><![CDATA[Performance testing]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Quality]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[security testing]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Software Quality Assurance]]></category>
		<category><![CDATA[SQl injection]]></category>
		<category><![CDATA[Testing Techinques]]></category>
		<category><![CDATA[Testing Techniques]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Type of testing]]></category>
		<category><![CDATA[Types of QA]]></category>
		<category><![CDATA[types of testing]]></category>
		<category><![CDATA[usability testing]]></category>
		<category><![CDATA[Watir]]></category>
		<category><![CDATA[web testing]]></category>
		<category><![CDATA[Wet Web tester]]></category>
		<category><![CDATA[white box]]></category>

		<guid isPermaLink="false">http://sqahelp.wordpress.com/?p=60</guid>
		<description><![CDATA[WET Web Tester is a web testing tool that drives an IE Browser directly and so the automated testing done is equivalent to how a user would drive the web pages. The tool allows a user to perform all the operations required for testing web applications – like automatically clicking a link, entering text in a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=60&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>WET Web Tester<span style="font-size:small;"><span> </span></span></strong>is a web testing tool that drives an IE Browser directly and so the automated testing done is equivalent to how a user would drive the web pages. The tool allows a user to perform all the operations required for testing web applications – like automatically clicking a link, entering text in a text field, clicking a button etc. One may also perform various checks as a part of the testing process by using Checkpoints. The latest version of WET is 0.9.8.</p>
<p>WET sits on top of Watir, an automated test tool which uses the Ruby scripting language. WET retains all the features that Watir has and adds many usability related functionality like Data table support, Object depot (aka object repository) and inbuilt Html reporting</p>
<h2>History</h2>
<p>WET started off as an Extension Toolkit to Watir, a framework for Web testing, released as an opensource product and called it as WET (Watir Extension Toolkit).</p>
<h2>Technical details</h2>
<h3>Working Principle</h3>
<p>A UI Test automation is conventionally done by either using a record and playback technique or by scripting completely.</p>
<ul>
<li>In the record-playback technique, the tool automatically captures the events generated by the tester&#8217;s actions and converts them to test scripts. These scripts can then be played back subsequently. While the record and playback technique allows testers to quickly create tests, experienced testers tend to detest using this approach due to the reliability and maintainability problem posed by these.</li>
<li>The scripting technique relies on an experienced tester writing test scripts from scratch. Experienced test automation engineers follow a complete software engineer process and treat the test automation effort as another development effort. While this technique offers the advantages of a well maintainable and reliable code, it suffers from certain drawbacks like requiring a greater experience pool, a larger budget, etc.</li>
</ul>
<p>The third technique is a <em>middle</em> solution that offers some of the conveniences of recorders while retaining the complete scripting power. WET has adopted this technique, called as the Proxied UI technique for test automation. Using this methodology, a tester instructs an IE browser (using some sort of a wizard) to perform various steps like clicking a link, setting text in a textfield, selecting a list box, etc. The tool then converts these instructions to test scripts. Unlike the recorders, where scripts are generated by the tool automatically based on the actions that the user performed on the actual browser, in this case scripts are created only when the tester asks the tool to do so. This by itself increases the accuracy of the generated scripts. Using these scripts as the baseline, a tester can increase the test coverage by writing scripts to suit his application under test.</p>
<p>Be it a total scripting, record and playback or the Proxied UI solution, each comes with its own benefits and liabilities. One advantage of the Proxied UI technique is that it gives control to the tester to decide how much of script generation is to be used vs. how much of hand written scripts. This is a decision that needs to be taken based on the application under test and the test coverage required. In a good project, there should be a proper mix between these techniques so that the benefits of each technique can be availed.</p>
<h3>Features</h3>
<p>The following are the important features of WET:</p>
<ul>
<li>WET UI – Preliminary Script development can be done using the WET UI which is easy to use. Using the WET UI, a tester can create Test Definitions, Object Repositories and the first draft of the test scripts.</li>
<li>Scripting using Ruby – WET uses Ruby, an object oriented scripting language, which in turns gives WET a powerful scripting ability</li>
<li>Object depot – The Object depot (aka Object Repository) allows a tester to map all the application&#8217;s objects into centralized repositories. This helps in a higher maintainability of scripts.</li>
<li>Object identification using multiple parameters – Many web pages are designed in such a way that the same page has elements with similar attributes – For example, there may be text fields with the label &#8216;name&#8217; – one may be for the User&#8217;s name while the other may be for the Developer&#8217;s name. WET allows a tester to identify even these kind of objects by letting to search for objects using multiple parameters.</li>
<li>&#8216;Test definitions&#8217; to define tests – The structure and flow of a WET test is controlled by a <em>test definitions</em> file. This flow closely mimics the regular manual testing process.</li>
<li>Slick HTML results – After the tests are completed, the results are printed out in neat HTML Format</li>
<li>Integrated Data table support – Testers can write data-driven tests by using the Integrated data table support. Data tables can either be as Excel files or XML format.</li>
<li>Popup handling – WET handles Win32 popups quite reliably.</li>
</ul>
<h3>Limitations</h3>
<p>The following are some shortcomings in WET:</p>
<ul>
<li>Supports only the IE browser. Cannot be used for compatibility testing.</li>
<li>The Simulated browser view of WET doesn&#8217;t work accurately for a complex pages. For these sort of pages, one has to view objects in a tree view only.</li>
<li>No integration with SCM / bug tracking tools</li>
<li>Does not have support for keyword driven tests</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqahelp.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqahelp.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqahelp.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqahelp.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqahelp.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqahelp.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqahelp.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqahelp.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqahelp.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqahelp.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqahelp.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqahelp.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqahelp.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqahelp.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=60&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqahelp.wordpress.com/2010/02/02/wet-web-tester/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00bb71a79a9315aef16ce9748c6acae2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammadghauri</media:title>
		</media:content>
	</item>
		<item>
		<title>Compliance Testing</title>
		<link>http://sqahelp.wordpress.com/2009/12/10/compliance-testing/</link>
		<comments>http://sqahelp.wordpress.com/2009/12/10/compliance-testing/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 11:35:10 +0000</pubDate>
		<dc:creator>Ammad Ghauri</dc:creator>
				<category><![CDATA[SQA]]></category>
		<category><![CDATA[Assurance]]></category>
		<category><![CDATA[black box]]></category>
		<category><![CDATA[Bug life Cycle]]></category>
		<category><![CDATA[Bug report]]></category>
		<category><![CDATA[Bug tracking]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Functionality testing]]></category>
		<category><![CDATA[integration testing]]></category>
		<category><![CDATA[Penetration testing]]></category>
		<category><![CDATA[Performance testing]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Quality]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[security testing]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Software Quality Assurance]]></category>
		<category><![CDATA[SQl injection]]></category>
		<category><![CDATA[Testing Techinques]]></category>
		<category><![CDATA[Testing Techniques]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Type of testing]]></category>
		<category><![CDATA[Types of QA]]></category>
		<category><![CDATA[types of testing]]></category>
		<category><![CDATA[usability testing]]></category>
		<category><![CDATA[web testing]]></category>
		<category><![CDATA[white box]]></category>

		<guid isPermaLink="false">http://sqahelp.wordpress.com/?p=55</guid>
		<description><![CDATA[What is compliance testing?  It’s basically an audit of a system carried out against a known criterion.  A compliance test may come in many different forms dependant on the request received but basically can be broken down into several different types: Operating Systems and Applications: A verification that an operating system and/or applications are configured appropriately to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=55&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What is compliance testing?  It’s basically an audit of a system carried out against a known criterion.  A compliance test may come in many different forms dependant on the request received but basically can be broken down into several different types:</p>
<ol>
<li><strong>Operating Systems and      Applications</strong>: A verification that an      operating system and/or applications are configured appropriately to the      companies needs and lockdown requirements, thus providing adequate and      robust controls  to ensure that the Confidentiality, Integrity and      Availability of the system will not be affected in its normal day to      day operation.</li>
<li><strong>Systems in development</strong>: verification that the intended system under      development meets the configuration and lockdown standards requested by      the customer.</li>
<li><strong>Management of IT and Enterprise      Architecture</strong>: A verification that the      in-place IT management infrastructure encompassing all aspects of system      support has been put in place.  This is to ensure effective change      control, audit, business continuity and security procedures etc. have been      formulated, documented and put in place.</li>
<li><strong>Interconnection Policy: </strong>A verification<strong> </strong>that adequate security and      business continuity controls governing the connection to other systems, be      they Telecommunications, Intranets, Extranets and Internet etc. have been      put in place, have been fully documented and correspond to the stated      customer requirements.</li>
</ol>
<p>A normal compliance check will encompass some if not all of the types listed above.  I will mostly discuss the lockdown policies that can be applied, (or have been applied), to the underlying operating system and applications.  There are a plethora of these about, some provided by vendors, some from other respective parties.  The ones listed below are just a sample of what is available online, there are many more.  They could be consulted as a reference and used as guidance by customers when you have performed a Compliance Check but also possibly after a Vulnerability Assessment or Penetration Test so that they can apply extra security measures to their enterprise to enhance its security.  With the ones quotes, I am just detailing generic Security settings and recommendations that you could apply and audit against, their are also country specific human relations and statutory regulations that you also must adhere to which these guides do not cover.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqahelp.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqahelp.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqahelp.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqahelp.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqahelp.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqahelp.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqahelp.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqahelp.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqahelp.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqahelp.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqahelp.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqahelp.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqahelp.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqahelp.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=55&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqahelp.wordpress.com/2009/12/10/compliance-testing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00bb71a79a9315aef16ce9748c6acae2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammadghauri</media:title>
		</media:content>
	</item>
		<item>
		<title>What are six software defect origins?</title>
		<link>http://sqahelp.wordpress.com/2009/12/09/what-are-six-software-defect-origins/</link>
		<comments>http://sqahelp.wordpress.com/2009/12/09/what-are-six-software-defect-origins/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 09:51:35 +0000</pubDate>
		<dc:creator>Ammad Ghauri</dc:creator>
				<category><![CDATA[SQA]]></category>
		<category><![CDATA[Assurance]]></category>
		<category><![CDATA[black box]]></category>
		<category><![CDATA[Bug life Cycle]]></category>
		<category><![CDATA[Bug report]]></category>
		<category><![CDATA[Bug tracking]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Functionality testing]]></category>
		<category><![CDATA[integration testing]]></category>
		<category><![CDATA[Penetration testing]]></category>
		<category><![CDATA[Performance testing]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Quality]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[security testing]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Software Quality Assurance]]></category>
		<category><![CDATA[SQl injection]]></category>
		<category><![CDATA[Testing Techinques]]></category>
		<category><![CDATA[Testing Techniques]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Type of testing]]></category>
		<category><![CDATA[Types of QA]]></category>
		<category><![CDATA[types of testing]]></category>
		<category><![CDATA[usability testing]]></category>
		<category><![CDATA[web testing]]></category>
		<category><![CDATA[white box]]></category>

		<guid isPermaLink="false">http://sqahelp.wordpress.com/?p=52</guid>
		<description><![CDATA[These are the origins Requirements Design Source code User manuals/training material “Bad fixes” or mistakes made during repairs Flawed test cases used by the application<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=52&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are the origins</p>
<ol>
<li>Requirements</li>
<li>Design</li>
<li>Source code</li>
<li>User manuals/training material</li>
<li>“Bad fixes” or mistakes made during repairs</li>
<li>Flawed test cases used by the application</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqahelp.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqahelp.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqahelp.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqahelp.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqahelp.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqahelp.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqahelp.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqahelp.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqahelp.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqahelp.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqahelp.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqahelp.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqahelp.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqahelp.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqahelp.wordpress.com&amp;blog=10009959&amp;post=52&amp;subd=sqahelp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqahelp.wordpress.com/2009/12/09/what-are-six-software-defect-origins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00bb71a79a9315aef16ce9748c6acae2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammadghauri</media:title>
		</media:content>
	</item>
	</channel>
</rss>
