<?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/"
	>

<channel>
	<title>MegaMind &#8211; CS@Worcester</title>
	<atom:link href="https://cs.worcester.edu/author/megamind/feed/" rel="self" type="application/rss+xml" />
	<link>https://cs.worcester.edu</link>
	<description>Worcester State University Computer Science Department</description>
	<lastBuildDate>Fri, 23 Sep 2016 03:04:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
<site xmlns="com-wordpress:feed-additions:1">236835116</site>	<item>
		<title>Git</title>
		<link>https://blueskies252.wordpress.com/2016/09/23/git/</link>
		
		<dc:creator><![CDATA[MegaMind]]></dc:creator>
		<pubDate>Fri, 23 Sep 2016 03:04:13 +0000</pubDate>
				<category><![CDATA[Software Testing]]></category>
		<guid isPermaLink="false">http://blueskies252.wordpress.com/?p=48</guid>

					<description><![CDATA[This week I was reading a book call Learn Git in a Month of Lunches by Umali. The book was very good in explaining how Git works and is written in a very easy to understand way. My understanding of Git has improved by a lot after reading this book. I would recommend this book [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=blueskies252.wordpress.com&#38;blog=116852939&#38;post=48&#38;subd=blueskies252&#38;ref=&#38;feed=1" width="1" height="1">]]></description>
										<content:encoded><![CDATA[<p>This week I was reading a book call Learn Git in a Month of Lunches by Umali. The book was very good in explaining how Git works and is written in a very easy to understand way. My understanding of Git has improved by a lot after reading this book. I would recommend this book to anyone who wants to understand Git.</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blueskies252.wordpress.com/48/"><img decoding="async" alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blueskies252.wordpress.com/48/" /></a> <img data-recalc-dims="1" decoding="async" alt="" border="0" src="https://i0.wp.com/pixel.wp.com/b.gif?resize=1%2C1&#038;ssl=1" width="1" height="1" /></p>

<p class="syndicated-attribution"><em>From the blog <a href="https://blueskies252.wordpress.com">Software Testing – The blog about software</a> by <a href="https://cs.worcester.edu/author/0/" title="Read other posts by MegaMind">MegaMind</a></em> and used with permission of the author. All other rights reserved by the author.</p>]]></content:encoded>
					
		
		<enclosure url="http://0.gravatar.com/avatar/ccdeb1e7b6358d3d64ff37006ebbccbe?s=96&#038;d=identicon&#038;r=G" length="0" type="" />

		<post-id xmlns="com-wordpress:feed-additions:1">4356</post-id>	</item>
		<item>
		<title>Boundary Value Testing</title>
		<link>https://blueskies252.wordpress.com/2016/09/16/all-things-software/</link>
		
		<dc:creator><![CDATA[MegaMind]]></dc:creator>
		<pubDate>Fri, 16 Sep 2016 18:35:39 +0000</pubDate>
				<category><![CDATA[Software Testing]]></category>
		<guid isPermaLink="false">http://blueskies252.wordpress.com/?p=28</guid>

					<description><![CDATA[The following are some key points I collected from reading chapter 5 in the Software Testing&#160;book (by Paul C. Jorgensen). One of the main uses of boundary value testing is to test for mistakes (or failures) arising from using the wrong comparision operator. It is also a specification-based testing (we are not worried about how [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=blueskies252.wordpress.com&#38;blog=116852939&#38;post=28&#38;subd=blueskies252&#38;ref=&#38;feed=1" width="1" height="1">]]></description>
										<content:encoded><![CDATA[<p>The following are some key points I collected from reading chapter 5 in the Software Testing book (by Paul C. Jorgensen).</p>
<p>One of the main uses of boundary value testing is to test for mistakes (or failures)<br />
arising from using the wrong comparision operator. It is also a specification-based<br />
testing (we are not worried about how the software unit is implemented) technique because we test whether the outputs are correct given valid or invalid inputs.</p>
<p>There are four variations of boundary value testing:<br />
1. Normal boundary value testing (Deals only with valid inputs and is based on the single fault assumption)<br />
2. Robust boundary value testing (Deals with both valid and invalid inputs and is based on the single fault assumption)<br />
3. Worst-case boundary value testing (Deals only with valid inputs and is NOT based on the single fault assumption)<br />
4. Robust worst-case boundary value testing (Deals only both valid inputs and invalid inputs and is NOT based on the single fault assumption)</p>
<p>The number of test cases for normal boundary value testing is 4n+1.<br />
The number of test cases for robust boundary value testing is 6n+1.<br />
The number of test cases for worst-case boundary value testing is 5^n.<br />
The number of test cases for robust worst-case boundary value testing is 7^n.</p>
<p><span id="more-28"></span></p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blueskies252.wordpress.com/28/"><img decoding="async" alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blueskies252.wordpress.com/28/" /></a> <img data-recalc-dims="1" decoding="async" alt="" border="0" src="https://i0.wp.com/pixel.wp.com/b.gif?resize=1%2C1&#038;ssl=1" width="1" height="1" /></p>

<p class="syndicated-attribution"><em>From the blog <a href="https://blueskies252.wordpress.com">Software Testing – The blog about software</a> by <a href="https://cs.worcester.edu/author/0/" title="Read other posts by MegaMind">MegaMind</a></em> and used with permission of the author. All other rights reserved by the author.</p>]]></content:encoded>
					
		
		<enclosure url="http://0.gravatar.com/avatar/ccdeb1e7b6358d3d64ff37006ebbccbe?s=96&#038;d=identicon&#038;r=G" length="0" type="" />

		<post-id xmlns="com-wordpress:feed-additions:1">4320</post-id>	</item>
	</channel>
</rss>
