Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is difference between SITP and UTP in testing
What is difference between SITP and UTP in testing ?
✍: Guest
UTP (Unit Test Plan) are done at smallest unit level or stand alone mode. Example you have Customer and invoicing module. So you will do test on Customer and Invoice module independently. But later when we want test both customer and invoice in one set we integrate them and test it. So that’s is SITP (System Integration Test Plan) UTP can be done using NUNIT. Unit testing is done normally by developers and System testing is done normally by testing department in integration mode.
2007-10-30, 11451👍, 0💬
Popular Posts:
I have 5 questions please give me the answer ,explanation,suggestions if any?? what is PMP(project m...
How Do I Run JUnit Tests from Command Window? To run JUnit tests from a command window, you need to ...
What is Traceability Matrix? Traceability Matrix is one of the document will prepare by QA.To make s...
How do you target a specific frame from a hyperlink? Include the name of the frame in the target att...
What will be printed as the result of the operation below: main() { int x=5; printf("%d,%d,%d\n",x,x. ..