<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic UTP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189601#M466675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats is unit test plan ?how do u write ?eperts plz explain me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 May 2007 18:27:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-07T18:27:19Z</dc:date>
    <item>
      <title>UTP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189601#M466675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats is unit test plan ?how do u write ?eperts plz explain me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 18:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189601#M466675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T18:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: UTP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189602#M466676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;UTP is unit test plan.&lt;/P&gt;&lt;P&gt;Suppose you mave created a functionality or modified a functionality, you have to test that your aim is achieved or not. For that purpose you prepare some test case and test that those test cases are successful or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose there was a parameter p_param1 in the selection screen of a program. You have modified it and made it mandatory. So now you will make a test plan which check that the parameter made mandatory or not. Then you test for those test cases and note down the test results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A UTP contains:&lt;/P&gt;&lt;P&gt;1. test case&lt;/P&gt;&lt;P&gt;2. Procedure&lt;/P&gt;&lt;P&gt;3. Expected results&lt;/P&gt;&lt;P&gt;4. Actual result&lt;/P&gt;&lt;P&gt;5.Success/Fail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 18:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189602#M466676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T18:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: UTP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189603#M466677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unit Test Plan is a document with all the possible test cases that would effectively ensure the performance of the program to the functionality mentioned in the tech specs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this weblog.&lt;/P&gt;&lt;P&gt;/people/vidya.gugnani/blog/2006/12/14/requirement-coverage-in-unit-testing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 18:36:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189603#M466677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T18:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: UTP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189604#M466678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In above example,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1. test case:&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;check whether the parameter p_param1 is mandatory.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2. Procedure:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Execute the program without giving the value of p_param1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3. Expected results:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;The program should disply a error that the field p_param1 is mandatory.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;4. Actual result:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;You will know it when u exexcute the program with such condition.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;5.Success/Fail:&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;If you can see the error then the test case is successful, otherwise the test case is fail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 18:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/utp/m-p/2189604#M466678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T18:37:14Z</dc:date>
    </item>
  </channel>
</rss>

