cancel
Showing results for 
Search instead for 
Did you mean: 

testings

Former Member
0 Kudos
58

hi experts,

how many types of testings are there

in my opinion there are three 1)unit testing 2) quality testing

3)regression testing .if it iscorrect

how to do this ? and

where we will do

pl revert back

thanks in advance

venu

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

<b>Unit Test</b>s are defined and performed by developers. A process consists usually of several functions. Each of this function usually consists of "sub-functions" corresponding to a single method or a group of methods (if you are developing OO-based).

Unit Tests could be described as white-box tests whereas a normal tester (which should be not identical to the developer) will test entire functions (black-box tests).

You have to have the ABAP unit implemented in the code for this to be used...pls see the link from SAP help..

http://help.sap.com/saphelp_nw04/helpdata/en/a2/8a1b602e858645b8aac1559b638ea4/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/c4/7c1440a1c32402e10000000a1550b0/frameset.htm

<b>Regression testing</b> is basically done after a Version/Patch upgrade o ensure all the BW functionalities are working fine. Now regression testing is done in different ways in different systems.

Sandbox - All the loads are tested - both manually and thro' process chains. Since sandbox does not have much resources only a sample load is tested. New features delivered with version/patch upgrade is tested.

Dev Box - All the developments are tested here like creation of a cube, ODS, Ino-object, reports, web-templates, etc... No loads are tested here. New features delivered with version/patch upgrade are tested. Creation of a test transport request.

QA Box - All the loads are tested here fully. Since the QA box more or less has the same data/resources as Prod Box a full load test is done here.

If there is any problem faced in any of the tests they need to be resolved first befoe proceeding to the next box. Any OSS Note that is to be applied is first applied in Sandbox then Dev and then QA.

Typically each Organisation has its own set of Regression test Doc prepared. So you would need to prepare one for your needs.

You can even go through these links:

http://help.sap.com/saphelp_nw04/helpdata/en/d7/e210c8408e11d1896b0000e8322d00/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/3c/aba235413911d1893d0000e8323c4f/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2123b408e11d1896b0000e8322d00/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2123b408e11d1896b0000e8322d00/frameset.htm

Hope this helps.

*****Assign points if helpful******

Regards,

Amith

Former Member
0 Kudos

1. Unit testing.

2. String testing

3. Integration testing

4. User acceptance testing.

Ravi Thothadri

Former Member
0 Kudos

Venu,

Look into:

Hope it helps,

Gili

former_member563406
Active Participant
0 Kudos

there can also be integration testing..