<?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 Re: testing of objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353181#M519648</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;Check the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c4/7c1440a1c32402e10000000a1550b0/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c4/7c1440a1c32402e10000000a1550b0/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/09/391540bf1af72ee10000000a1550b0/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/09/391540bf1af72ee10000000a1550b0/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 14:11:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-05T14:11:29Z</dc:date>
    <item>
      <title>testing of objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353177#M519644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how do you do the Unit testing?....and what is the transaction code for TESTING?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 13:54:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353177#M519644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T13:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: testing of objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353178#M519645</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;   after creating report,&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;       just press F8.it will give u output.......&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;      based on your selection parameter u can test ur report...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     if u want debug than set break point.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   reward points if helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt;Imran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 13:57:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353178#M519645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T13:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: testing of objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353179#M519646</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 testing is nothing but debug testing ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unit testing is done with your stand alone development say a class or a program developed by you and is done by a person from testing team. In this you will check for negative logic (something like what will happen if you dont enter correct values to the input parameters), labels and also for getting output with maximum possible inputs. Normally there are guidelines available for this with testing team. It is mostly a generic guideline for all the platforms say SAP or JAVA... So the starting point of this testing is your development. The most important things to be checked are the texts in your error or warning or information messages, labels printed in the screens and or header, footers. Also verify the output format is matching with what is mentioned in the functional spec by the object owner from client side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP Unit Testing can, if done very carefully and extensively, almost completely replace debugging which is a synonym for unsystematic testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unit Tests bridge the gap between low-level testing and high-level testing of entire processes using eCATT.&lt;/P&gt;&lt;P&gt;If you have a class with several methods of a function group with several function modules you can define for each method and function module one or many Unit Tests. Using these Unit Tests you can demonstrate that your methods and function modules work according to you expectations. Even more important, when you change your coding you can use your Unit Tests to check whether you accidentially introduced some error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another very interesting way of programming is test-driven development (TDD). This basically means that you create a test first based on the specification which, of course, will fail in the beginning because there isn't any application. Now you develop until the Unit Test will be passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aneesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 13:58:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353179#M519646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T13:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: testing of objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353180#M519647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the T-Code SCAT or  SECATT&lt;/P&gt;&lt;P&gt;Also a lot of utilities are a part of the testing package &lt;/P&gt;&lt;P&gt;SQL Tace : ST05&lt;/P&gt;&lt;P&gt;T-Code : STWB_WORK -&amp;gt; Testing performance &lt;/P&gt;&lt;P&gt;Also these is Code analyser &lt;/P&gt;&lt;P&gt;Code Inspector &lt;/P&gt;&lt;P&gt;Runtime Monitor &amp;amp; EPC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:00:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353180#M519647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: testing of objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353181#M519648</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;Check the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c4/7c1440a1c32402e10000000a1550b0/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c4/7c1440a1c32402e10000000a1550b0/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/09/391540bf1af72ee10000000a1550b0/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/09/391540bf1af72ee10000000a1550b0/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/testing-of-objects/m-p/2353181#M519648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:11:29Z</dc:date>
    </item>
  </channel>
</rss>

