<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yukendran kamaraj</title>
    <description>The latest articles on DEV Community by Yukendran kamaraj (@yuk).</description>
    <link>https://dev.to/yuk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1212765%2F228da7ec-275b-4de1-9902-ad6e11d11c59.png</url>
      <title>DEV Community: Yukendran kamaraj</title>
      <link>https://dev.to/yuk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yuk"/>
    <language>en</language>
    <item>
      <title>Manual Testing task3</title>
      <dc:creator>Yukendran kamaraj</dc:creator>
      <pubDate>Wed, 29 Nov 2023 13:42:25 +0000</pubDate>
      <link>https://dev.to/yuk/manual-testing-task3-185k</link>
      <guid>https://dev.to/yuk/manual-testing-task3-185k</guid>
      <description>&lt;p&gt;What is the difference between Functional testing and Non functional testing? Give some examples in support of your answer?&lt;/p&gt;

&lt;p&gt;Functional testing ensures that the function's and features of the application work properly,Non functional testing examines other aspect of how well the application works,Functional testing test the functionality of an application,Non functional tests the performance of these functions.&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;Example of Functional testing:&lt;/p&gt;

&lt;p&gt;Imagine you are testing a web application that requires user to log in,In this case,functional testing simply is used to check if the login page is working as expected.&lt;/p&gt;

&lt;p&gt;Example of Non Functional testing:&lt;/p&gt;

&lt;p&gt;It focuses on the non functional aspect's of the application,For example using performance testing is a type of non functional testing that lets you check the performance of an application under heavy traffic of user load,Also it ensure that your application is stable and can handle heavy loads.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Manual Testing</title>
      <dc:creator>Yukendran kamaraj</dc:creator>
      <pubDate>Wed, 29 Nov 2023 13:15:53 +0000</pubDate>
      <link>https://dev.to/yuk/manual-testing-2eh0</link>
      <guid>https://dev.to/yuk/manual-testing-2eh0</guid>
      <description>&lt;p&gt;Boundary Value Analysis?&lt;/p&gt;

&lt;p&gt;BVA involves software testing data near the specified limits or boundaries in the input specification,The aim is to test the input data's extreme values and boundary condition's,This include minimum and maximum values,Test input's at or near the defined minimum and maximum limits.&lt;/p&gt;

&lt;p&gt;Decision Table Testing?&lt;/p&gt;

&lt;p&gt;A decision table testing is the tabular representation of several input values,cases rules &amp;amp; test condition's,The decision table is a highly effective tool utilized for both requirement management &amp;amp; complex software testing,Through this table we can check and verify all possible combination's of testing condition.&lt;/p&gt;

&lt;p&gt;Use Case testing?&lt;/p&gt;

&lt;p&gt;Its a type of black box testing that helps in indentifying test cases that cover the entire system transaction by transaction from start to finish,It is a description of how a specific user uses the system,This method is widely used in developing test at systems or acceptance level'a.&lt;/p&gt;

&lt;p&gt;LCSAJ Testing?&lt;/p&gt;

&lt;p&gt;It means Linear Code Sequence &amp;amp; Jump &amp;amp; its a white box testing methodolgy used to determine the code coverage means what percentage of the code is executed with the existing test cases,It helps in designing new test cases,which can increase the coverage of the code under test.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Testing Techniques</title>
      <dc:creator>Yukendran kamaraj</dc:creator>
      <pubDate>Thu, 23 Nov 2023 11:16:11 +0000</pubDate>
      <link>https://dev.to/yuk/testing-techniques-e9e</link>
      <guid>https://dev.to/yuk/testing-techniques-e9e</guid>
      <description>&lt;p&gt;1.Boundary Value Analysis.&lt;br&gt;
Its based on testing the boundary values of valid and invalid partition's,the behaviour at the edge of the equivalence partition is more likely to be incorrect than the behaviour within the partition,So boundaries are an area where testing is likely to yield defect's,&lt;/p&gt;

&lt;p&gt;It checks for the input values near the boundary that have a higher chance of error,Every partition has its minimum &amp;amp; maximum values,and these minimum &amp;amp; maximum values are the boundary values of a partition.&lt;/p&gt;

&lt;p&gt;2.Decision Table Testing.&lt;br&gt;
Decision table testing is a software testing technique used to test system behavior for different input combination and their corresponding system behavior( Output ) are captured in a tabular form &amp;amp; its also called as cause-effect table where cause and effects are captured for better test coverage&lt;/p&gt;

&lt;p&gt;3.Use Case Testing.&lt;br&gt;
Use case is a list of action taken by actor while interacting the system to achieve a goal,Here actor can be anyone either human user's or any other external system,Basically it is a technique that helps to identify test cases that cover the entire system,on transaction by transaction basis,from start to finish.&lt;/p&gt;

&lt;p&gt;4.LCSAJ Testing.&lt;/p&gt;

&lt;p&gt;It stands for Linear Code Sequence &amp;amp; Jump,its a white box testing methodology used to determine the code coverage i.e what percentage of the code is executed with the existing test cases,It helps in designing new test cases which can increase the coverage of the code under test.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Software Testing</title>
      <dc:creator>Yukendran kamaraj</dc:creator>
      <pubDate>Thu, 23 Nov 2023 10:36:43 +0000</pubDate>
      <link>https://dev.to/yuk/software-testing-4lpa</link>
      <guid>https://dev.to/yuk/software-testing-4lpa</guid>
      <description>&lt;p&gt;What is Software testing ?&lt;br&gt;
Software testing fundamental requirement is to deliver quality software on time &amp;amp; within the planned budget or even lesser than the planned,&lt;br&gt;
Software testing is nothing but the process of executing the program with the intention of finding errors which is ultimate for a software tester to complete his or her expected tasks from the project.&lt;br&gt;
What we need to know about software testing?&lt;br&gt;
The important 2 terms we must know in software testing is Verification &amp;amp; Validation:&lt;br&gt;
It means are we built or developed the software perfect as per the expectation then error free without any bugs&amp;amp; lastly have we built the software right &amp;amp; meets customer needs&lt;br&gt;
What is the relevance of software testing?&lt;br&gt;
It identify defects,&lt;br&gt;
Reduce flaws,&lt;br&gt;
&amp;amp; increase the overall quality of the system.&lt;/p&gt;

</description>
      <category>software</category>
      <category>testing</category>
    </item>
  </channel>
</rss>
