Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

unit test

Former Member
0 Likes
546

hi,

what is UTP? why we do it?

thanks in advance.

aravind.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
507

Hi,

Say you have developed many objects . Assume all these are executed together to achieve some desired output . Before we test the whole thing we need to confirm that all the single entities are workig fine . So we test each of them as a standalone thing. this is called unit testing .

Regards,

Varun .

3 REPLIES 3
Read only

Former Member
0 Likes
508

Hi,

Say you have developed many objects . Assume all these are executed together to achieve some desired output . Before we test the whole thing we need to confirm that all the single entities are workig fine . So we test each of them as a standalone thing. this is called unit testing .

Regards,

Varun .

Read only

Former Member
0 Likes
507

Hi,

A unit test planning (UTP) is a procedure used to validate that a particular module of source code is working properly. The procedure is to write test cases for all functions and methods so that whenever a change causes a regression, it can be quickly identified and fixed. Ideally, each test case is separate from the others; constructs such as mock objects can assist in separating unit tests. This type of testing is mostly done by the developers and not by end-users.

Regards,

Prakash

Read only

Former Member
0 Likes
507

hi Aravind,

UTP is internal part of Life cycle of a Object Development. After developing of an Object(Particular Task) the developer will check that object with different test cases. if any chnages required he will do it before doing the Integration testing.

Regards

Ashok P