<?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>dekeh4 &#8211; CS@Worcester</title>
	<atom:link href="https://cs.worcester.edu/author/dekeh4/feed/" rel="self" type="application/rss+xml" />
	<link>https://cs.worcester.edu</link>
	<description>Worcester State University Computer Science Department</description>
	<lastBuildDate>Thu, 06 Dec 2018 15:09:02 +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>Terminology – Error, Fault, Failure, Incident, Test, Test Case</title>
		<link>https://dekeh4.wordpress.com/2018/12/06/terminology-error-fault-failure-incident-test-test-case/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Thu, 06 Dec 2018 15:09:02 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week-14]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=49</guid>

					<description><![CDATA[Greetings reader! In today&#8217;s blog,&#160; I will discuss the differences between very important terminology in software testing: Error, Fault, Failure, Incident, Test, and Test Case. This blog will define each term and explain how they all correlate.&#160;Without any further introduction, let&#8217;s begin. The differences between error, fault, failure, and incident are as follows: An error&#8230; <a href="https://dekeh4.wordpress.com/2018/12/06/terminology-error-fault-failure-incident-test-test-case/">Continue reading <span>Terminology &#8211; Error, Fault, Failure, Incident, Test, Test&#160;Case</span></a>]]></description>
										<content:encoded><![CDATA[<p>Greetings reader!</p>
<p>In today&#8217;s blog,  I will discuss the differences between very important terminology in software testing: Error, Fault, Failure, Incident, Test, and Test Case. This blog will define each term and explain how they all correlate. Without any further introduction, let&#8217;s begin.</p>
<p>The differences between error, fault, failure, and incident are as follows:</p>
<p>An <strong>error</strong> is a human action that produces an incorrect result.  A <strong>fault</strong> is a<span style="font-weight:400;"> flaw in a component or system that can cause the component or system to fail to perform its required function. A <strong>f</strong></span><strong>ailure</strong> is a deviation of the software from its expected delivery or service. An <strong>Incident</strong> is an unplanned interruption. When the status of any activity turns from working to failed and causes the system to fail it is an incident. A problem can cause more than one incident which are to be resolved, preferably as soon as possible.</p>
<p>An error is something that a human does, we all make mistakes and when we do while developing software, it is known as an error. The result of an error being made is a fault.</p>
<p>When a system or piece of software does not perform the correct action, this is known as a failure. Failures are caused by faults in the software. Note that software system can contain faults but still never fail (this can occur if the faults are in those parts of the system that are never used). In other words, failure is the exposure of one or more faults.</p>
<p>A test is a process that evaluate the functions of a software application with an intent to find whether the developed software met the specified requirements or not and to identify the defects to ensure that the product is defect free in order to produce the quality product.</p>
<p>A test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements or works correctly. The process of developing test cases can also help find problems in the requirements or design of an application.</p>
<p>All in all, these terms are pretty elementary, however they are all important in Software testing. These terms all coincide with each other and I hop this blog was able to explain them in short detail.</p>
<p>&nbsp;</p>

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

		<post-id xmlns="com-wordpress:feed-additions:1">10270</post-id>	</item>
		<item>
		<title>Using JUnit</title>
		<link>https://dekeh4.wordpress.com/2018/12/03/using-junit/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Mon, 03 Dec 2018 00:34:01 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week 13]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=44</guid>

					<description><![CDATA[Greetings reader! The nature of this blog is to give a short summary over a topic that is essential in the Computer Science field: JUnit Testing.&#160;I will be expressing my reaction to the content by sharing what I find useful and interesting. Without any further introduction, let&#8217;s begin. The JUnit framework is a framework that&#8230; <a href="https://dekeh4.wordpress.com/2018/12/03/using-junit/">Continue reading <span>Using JUnit</span></a>]]></description>
										<content:encoded><![CDATA[<p>Greetings reader!</p>
<p>The nature of this blog is to give a short summary over a topic that is essential in the Computer Science field: JUnit Testing.<em> </em>I will be expressing my reaction to the content by sharing what I find useful and interesting. Without any further introduction, let&#8217;s begin.</p>
<p>The JUnit framework is a framework that uses annotations to show methods that specify a test. When defining a JUnit test, the test itself is a method in a class that is only used for testing. This is called a test class. To define that a method is indeed a test method, define it with the @Test annotation. This method implements the code under test.</p>
<p>Also when defining a test, testers can use an assert method, made by JUnit to check an expected result against the actual result. These method calls are called assert statements. Testers should provide messages in assert statements because it makes it easier for the user to identify and fix any problems. This works if someone looks at the problem, who did not write the code under test or the test code.</p>
<p>When naming a test, there are many naming conventions. A solution for classes is to use the word &#8220;Test&#8221; at the end of test classes names. This gives the reader an easier understanding that this is actually a test class. A test name should explain what the test does. If that is done correctly, reading the actual implementation can be avoided. If you are using the Maven build system, you should use the word &#8220;Test&#8221; for test classes. The Maven build system automatically includes such classes in its test.</p>
<p>Testers can also run their JUnit tests outside the IDE with standard Java code. Systems like Maven or Gradle can be used to execute tests automatically. The org.junit.runner.JUnitCore class provides the runClasses() method. This method allows you to run one or several tests classes. As a return parameter you receive an object of the type org.junit.runner.Result. This object can be used to retrieve information about the tests.</p>
<p>J unit testing is a huge part of unit testing and so much more can be said about it. This is just an intro or short summary of the topic.</p>

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

		<post-id xmlns="com-wordpress:feed-additions:1">10227</post-id>	</item>
		<item>
		<title>Boundary Value Testing, Equivalence Class Testing, Decision Table-Based Testing</title>
		<link>https://dekeh4.wordpress.com/2018/11/26/boundary-value-testing-equivalence-class-testing-decision-table-based-testing/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Mon, 26 Nov 2018 02:18:37 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week 12]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=41</guid>

					<description><![CDATA[Greetings reader! This blog will give a short summary over topics that are essential in the Computer Science field: Boundary Value Testing, Equivalence Class Testing, and Decision Table- based testing.&#160;&#160;I will be expressing my reaction to the content by sharing what I find useful and interesting. Without any further introduction, let&#8217;s begin. Equivalent Class Testing&#8230; <a href="https://dekeh4.wordpress.com/2018/11/26/boundary-value-testing-equivalence-class-testing-decision-table-based-testing/">Continue reading <span>Boundary Value Testing, Equivalence Class Testing, Decision Table-Based&#160;Testing</span></a>]]></description>
										<content:encoded><![CDATA[<p>Greetings reader!</p>
<p>This blog will give a short summary over topics that are essential in the Computer Science field: Boundary Value Testing, Equivalence Class Testing, and Decision Table- based testing.<em>  </em>I will be expressing my reaction to the content by sharing what I find useful and interesting. Without any further introduction, let&#8217;s begin.</p>
<p>Equivalent Class Testing is a black box method that can be used with all levels of testing (unit, integration, system). In this technique, the tester divides the set of test conditions into a partition. Equivalence class testing is used to reduce large numbers of test cases into clusters that are much more easy to manage. It also makes clear instructions on determining test cases without adjusting on the efficiency of testing.</p>
<p>Boundary value testing is the testing between extreme ends of the input values. The idea of boundary value testing is to select input values at their minimum, just above the minimum,  the nominal value, just below the maximum, and the maximum. In boundary value testing, equivalence class testing plays a huge role because boundary testing comes after the equivalence class testing. Boundary testing is used when it is  almost impossible to test large pool of test cases individually.</p>
<p>Decision table testing is a technique that is used to test system behavior for many different input combinations. This is a strategic approach where the different input combinations and their outputs are captured in a table format. Decision table testing is also called cause and effect testing. This testing method is important when it is necessary to test different combinations. Some advantages of decision table testing is when the system behavior is different for different inputs and not the same for a range of inputs, both equivalent testing, and boundary value testing wouldn&#8217;t help, but the decision table can be used.</p>
<p>Decision tables are so simple that they can be easily interpreted and used for development and also business. This table will help make effective combinations and will ensure better coverage for testing. In a case when a tester is going for 100% coverage, when the input combinations are low, this technique can typically ensure the coverage.</p>
<p>&nbsp;</p>

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

		<post-id xmlns="com-wordpress:feed-additions:1">10167</post-id>	</item>
		<item>
		<title>Specification-Based vs Code-Based Testing</title>
		<link>https://dekeh4.wordpress.com/2018/11/19/specification-based-vs-code-based-testing/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Mon, 19 Nov 2018 01:33:28 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week 11]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=38</guid>

					<description><![CDATA[Greetings reader! In today&#8217;s blog, I will be discussing the differences between specification-based testing and code-based testing . I will also explain the benefits of each test, as well as pointing out their distinct features. Without further explanation, let&#8217;s begin! Code based testing is a technique used to see if each line of code has&#8230; <a href="https://dekeh4.wordpress.com/2018/11/19/specification-based-vs-code-based-testing/">Continue reading <span>Specification-Based vs Code-Based&#160;Testing</span></a>]]></description>
										<content:encoded><![CDATA[<p>Greetings reader!</p>
<p>In today&#8217;s blog, I will be discussing the differences between specification-based testing and code-based testing . I will also explain the benefits of each test, as well as pointing out their distinct features. Without further explanation, let&#8217;s begin!</p>
<p>Code based testing is a technique used to see if each line of code has been executed correctly. It corresponds to the testing that is carried out on code development, code inspection, and unit testing in the software development process. The idea is to find out whether any bugs exist in the program by choosing a set of test cases that can create the wanted results. Code based testing involves dynamic testing, static testing, and calculating Cyclomatic complexity.</p>
<p>In static testing, code is not executed; instead it checks the code, requirement documents, and design documents to detect errors.  The goal of this technique is to improve the quality of software by finding errors in early stages of development. Dynamic testing is when you are providing an input, receiving an output, and comparing the output to the expected behavior. Cyclomatic complexity is a mathematical based technique that helps reveal the facts that may be hard to find. It is the calculation of the number of nodes reached and the jump to the next node. It is done with the help of a control flow graph.</p>
<p>Specification-based testing technique is also known as black-box testing because they view the software as a black-box with inputs and outputs. Black box testing is a testing method in which there is no access to the source code or the internal structure of software. The main goal is to check to see if everything works well from the view of a user.  Black box testing focuses on incorrect or missing functions, data structures errors, any graphical user interface errors, faulty software performance, and for any control flow errors. <span id="more-352"></span>The testers have no knowledge of how the system or component is structured inside the box. Specification-based techniques are applicable at all levels of testing where specification exists.</p>
<h4>Types of Specification Based Testing Techniques</h4>
<ol>
<li>Equivalence Partitioning</li>
<li>Boundary Value Analysis</li>
<li>Decision Tables</li>
<li>State Transitioning</li>
</ol>

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

		<post-id xmlns="com-wordpress:feed-additions:1">10119</post-id>	</item>
		<item>
		<title>Levels of Testing – Unit, Integration, System</title>
		<link>https://dekeh4.wordpress.com/2018/11/11/levels-of-testing-unit-integration-system/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Sun, 11 Nov 2018 19:44:08 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week 10]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=34</guid>

					<description><![CDATA[Hello reader! Today&#8217;s blog,&#160; will discuss the differences between Unit, Intergration, and System testing. I will briefly explain the benefits for each test, as well as pointing out their distinct features. I will also be sharing my analysis of Software Testing Fundamental&#8217;s-&#8220;Software Testing Levels&#8221; article from which I read.&#160;Let&#8217;s begin! Software testing levels are various&#8230; <a href="https://dekeh4.wordpress.com/2018/11/11/levels-of-testing-unit-integration-system/">Continue reading <span>Levels of Testing &#8211; Unit, Integration,&#160;System</span></a>]]></description>
										<content:encoded><![CDATA[<p>Hello reader!</p>
<p>Today&#8217;s blog,  will discuss the differences between Unit, Intergration, and System testing. I will briefly explain the benefits for each test, as well as pointing out their distinct features. I will also be sharing my analysis of Software Testing Fundamental&#8217;s<em>-&#8220;Software Testing Levels</em>&#8221; article from which I read<i>. </i>Let&#8217;s begin!</p>
<p>Software testing levels are various phases of the development sequence in which the testing is conducted. The main goal of system testing is to assess the system&#8217;s agreement with the specified needs. There are different testing levels that help check behavior and performance. These testing levels are designed to see missing areas and accordance between the development lifecycle states. There are three levels of software testing that I am going to talk about: Unit, Integration, System, and Sytem Testing.</p>
<p>Unit testing is a level of the testing process that tests individual units of a software. The goal is to show that each unit of the software works as designed. Intergration testing is a testing process that combines and tests individual units as a group. The goal of this level is to show faults in the interaction with integrated units. System testing is a testing process in which a program is tested for acceptability. The goal is to evaluate the program&#8217;s agreement with the business requirements and to see whether it is acceptable for delivery.</p>
<p>These three testing types cannot just be applied randomly during the forming process. There is a sequence that should be considered to in order to lessen the risk of failures. By increasingly testing the more simple things in the system and moving on to the more complex things, the testers should know that they are carefully examining the software in the most efficient ways possible.</p>
<p>Testing early and often is definitely worth the effort. Having a efficient approach to testing allows the tester to find any faults in the system sooner, which leads to less time and less money wasted later on.</p>
<p>Software Testing Fundamental&#8217;s<em>-&#8220;Software Testing Levels</em>&#8221; was written very well and it was very easy to understand. It taught me a great amount of these three types of testing. I hope I was able to extend what I learned in a informative way.</p>
<p>&nbsp;</p>

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

		<post-id xmlns="com-wordpress:feed-additions:1">10061</post-id>	</item>
		<item>
		<title>Static vs. Dynamic Testing</title>
		<link>https://dekeh4.wordpress.com/2018/11/01/static-vs-dynamic-testing/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Thu, 01 Nov 2018 14:54:49 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week 9]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=22</guid>

					<description><![CDATA[Greetings reader! Today&#8217;s blog,&#160; will discuss the differences between static and dynamic testing. I will be briefly explaining the benefits for each test, as well as pointing out their distinct features. I will also be sharing my analysis of Software Testing Help&#8217;s-&#8221;&#160;Static Testing and Dynamic Testing &#8211; Difference Between These Two Important Testing Techniques&#8221; article&#8230; <a href="https://dekeh4.wordpress.com/2018/11/01/static-vs-dynamic-testing/">Continue reading <span>Static vs. Dynamic&#160;Testing</span></a>]]></description>
										<content:encoded><![CDATA[<p>Greetings reader!</p>
<p>Today&#8217;s blog,  will discuss the differences between static and dynamic testing. I will be briefly explaining the benefits for each test, as well as pointing out their distinct features. I will also be sharing my analysis of <span style="text-decoration:underline;">Software Testing Help&#8217;s</span><em>-&#8221; Static Testing and Dynamic Testing – Difference Between These Two Important Testing Techniques</em>&#8221; article from which I read<em>.</em> Without any further babbling, let&#8217;s start.</p>
<p>Static testing is a testing technique that takes the form of design reviews, functional requirement reviews, code walkthroughs, business requirement reviews, and test documentation reviews. It is a ongoing activity that is not just done by testers.</p>
<p>In static testing, code is not executed; instead it checks the code, requirement documents, and design documents to detect errors.  The goal of this technique is to improve the quality of software by finding errors in early stages of development. Static testing is often called as non-execution technique or verification testing.</p>
<p><strong><span style="text-decoration:underline;">Static Testing Techniques:</span></strong></p>
<ul>
<li>Informal Reviews</li>
<li>Technical Reviews</li>
<li>Walkthrough</li>
<li>Inspection</li>
<li>Static code Review</li>
</ul>
<p>Dynamic testing is more hands-on and develops on the product itself and not on an a representation of the product. A much formal process of test cases, considerations, and execution explain the dynamic testing methods. Dynamic testing is when you are providing an input, receiving an output, and comparing the output to the expected behavior. It is a system made with the intent of finding errors.</p>
<p>In dynamic testing, code <em>is</em> executed. It checks for working behavior of the software system, memory, and the performance of the system. The goal of this technique is to ensure that the  product works in agreement with  the business requirements. Dynamic testing is used at all levels of testing and it can be either black or white box testing. Dynamic testing is also known as validation testing.</p>
<p><span style="text-decoration:underline;"><strong>Dynamic Testing Techniques:</strong></span></p>
<ul>
<li>Unit Testing</li>
<li>Integration Testing</li>
<li>System Testing</li>
</ul>
<p>In conclusion, both static and dynamic testing reveal mistakes and coding errors using different methods. Verification (Static) and Validation (Dynamic) are two measures used to check that the software product meets the requirements specifications. Together they try to help improve software quality.</p>
<p><span style="text-decoration:underline;">Software Testing Help&#8217;s</span><em>-&#8221; Static Testing and Dynamic Testing – Difference Between These Two Important Testing Techniques</em>&#8221; helped me a lot when reading about Static vs Dynamic testing.</p>

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

		<post-id xmlns="com-wordpress:feed-additions:1">9964</post-id>	</item>
		<item>
		<title>The Differences between Black Box and White Box Testing</title>
		<link>https://dekeh4.wordpress.com/2018/10/08/the-differences-between-black-box-and-white-box-testing/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Mon, 08 Oct 2018 03:13:11 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week 5]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=20</guid>

					<description><![CDATA[Greetings reader! In today&#8217;s blog,&#160; I will be discussing the differences between black box and white box testing. This blog will briefly explain the benefits for each test, as well as point out their distinct features. I will also be sharing my analysis of QATestLab&#8217;s-&#8220;Difference Between White Box, Black Box, and Gray Box Testing&#8221; article&#8230; <a href="https://dekeh4.wordpress.com/2018/10/08/the-differences-between-black-box-and-white-box-testing/">Continue reading <span>The Differences between Black Box and White Box&#160;Testing</span></a>]]></description>
										<content:encoded><![CDATA[<p>Greetings reader!</p>
<p>In today&#8217;s blog,  I will be discussing the differences between black box and white box testing. This blog will briefly explain the benefits for each test, as well as point out their distinct features. I will also be sharing my analysis of QATestLab&#8217;s<em>-&#8220;</em><em>Difference Between White Box, Black Box, and Gray Box Testing</em>&#8221; article from which I read<em>.</em> Without any further introduction, let&#8217;s begin.</p>
<p>Black box testing (BBT) is a testing method in which there is no access to the source code or the internal structure of software. The main goal of BBT is to check to see if everything works well from the view of a user.  Black box testing focuses on incorrect or missing functions, data structures errors, any graphical user interface errors, faulty software performance, and for any control flow errors.</p>
<p>Some advantages of black box testing are as follows. First, the tester can start designing test cases just after the specification is ready. Secondly, tests preparation time is short, and finally, there is no need for a tester to know the programming language of the application. The disadvantages of black-box testing: it is hard to design test cases without a specification, only some paths are covered , and it is impossible to to see what part of the code can cause a problem in future.</p>
<p>White-box testing (WBT) is a testing method where there <em>is</em> access to the source code and internal structure of the software (opposed to BBT). This testing type insinutates that a tester knows which code line is called for each function. It allows the tester to better choose an entry data set and to check errors and exceptions efficiently. White-box Testing focuses on bad code writing, conditional loops, the working flow of the code, and memory leaks.</p>
<p>Advantages of white-box testing are: there is no need to wait for the GUI application, it can conduct more detailed testing with more cases covered, and it can predict the potential problems in the software. The disadvantages of white-box testing is that a tester must know the programming language of the software, it can take much more time than other methods, and it can be expensive.</p>
<p>To conclude, there are advantages and disadvantages to both methods of testing, so there is none that is &#8220;better&#8221; than the other. They are both necessary and complementary.  The QATestLab&#8217;s<em>-&#8220;</em><em>Difference Between White Box, Black Box, and Gray Box Testing</em>&#8221; article that I read was extremely informative and very easy to comprehend. I greatly recommend their articles to expand your computer science knowledge.</p>

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

		<post-id xmlns="com-wordpress:feed-additions:1">9803</post-id>	</item>
		<item>
		<title>Mutation Testing</title>
		<link>https://dekeh4.wordpress.com/2018/10/01/mutation-testing/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Mon, 01 Oct 2018 02:30:38 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Week 4]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=18</guid>

					<description><![CDATA[Greetings reader! The nature of this blog is to give a short summary over a topic that is essential in the Computer Science field: Mutation Testing. This blog will share my analysis of&#160;Tutorial&#8217;sPoint&#8217;s: Simply Easy Learning- Mutation Testing Tutorial.&#160;&#160;I will be expressing my reaction to the content by sharing what I find useful and interesting&#8230; <a href="https://dekeh4.wordpress.com/2018/10/01/mutation-testing/">Continue reading <span>Mutation Testing</span></a>]]></description>
										<content:encoded><![CDATA[<p>Greetings reader!</p>
<p>The nature of this blog is to give a short summary over a topic that is essential in the Computer Science field: Mutation Testing. This blog will share my analysis of <em>Tutorial&#8217;sPoint&#8217;s: Simply Easy Learning- </em>Mutation Testing Tutorial<em>.  </em>I will be expressing my reaction to the content by sharing what I find useful and interesting and displaying if I have any concerns or disagreements. Without any further introduction, let&#8217;s begin.</p>
<p>First, let&#8217;s start with defining what mutation testing is. Mutation testing is a testing technique that uses the structure of the code to conduct the testing process. It is simply the rewriting of code in small ways in order to take out the excessiveness in the code. This wordiness may cause failures in the software if it is not altered. It is very sneaky because it can pass through the testing process&#8217; unnoticed.</p>
<p>There are three types of mutation testing: value, decision, and statement mutations. Value mutations are efforts to change the values to display errors in the programs. The change of the value is usually to either a very large value or a very small value. It is found that the most common strategy to combat this is to change the constants. Decision mutations are when the code is changed to check for errors in the design. Ways to fix these errors are by changing the arithmetic operators to find the failures or by altering the relational and logical operators. Statement mutations are when changes are done to the statements by deleting or rewriting the line.</p>
<p>Mutation testing is based on two theorems. The first is the competent programmer theorem. This theorem explains that most software errors made by experienced programmers are due to small syntax errors. <sup id="cite_ref-DLS1978_1-2" class="reference"></sup>The second theory is called the coupling effect. The coupling effect says that simple errors can <em>couple </em>to form other faults.</p>
<p>All in all, mutation testing is a fairly simple technique that is used when testing code. Sometimes errors or faults can be hidden when making tests that will cause the source code to fail. Mutation testing is the process of altering these subtle errors in efforts to run the code.  This topic is extremely important to this field because it gives us a deeper understanding of our errors, which helps greatly when correcting &#8220;bad&#8221; code.</p>
<p><em>Source: Tutorial&#8217;sPoint&#8217;s: Simply Easy Learning- Mutation Testing Tutorial</em></p>
<p>&nbsp;</p>

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

		<post-id xmlns="com-wordpress:feed-additions:1">9762</post-id>	</item>
		<item>
		<title>Introductory Blog Post</title>
		<link>https://dekeh4.wordpress.com/2018/09/09/cs-wsu/</link>
		
		<dc:creator><![CDATA[dekeh4]]></dc:creator>
		<pubDate>Sun, 09 Sep 2018 23:55:15 +0000</pubDate>
				<category><![CDATA[CS-443]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<guid isPermaLink="false">http://dekeh4.wordpress.com/?p=16</guid>

					<description><![CDATA[This is my first blog post for CS 443!
]]></description>
										<content:encoded><![CDATA[<p>This is my first blog post for CS 443!</p>

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

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