Test Objective for Unit Testing

What would be the Test Objective for Unit Testing? What are the quality measurements to assure that unit testing is complete?

Questions by Reshma_81

Showing Answers 1 - 9 of 9 Answers

CharuRaj

  • Jun 19th, 2008
 

Unit Testing is carried out by the developers in order to check if the particular module or unit of code is working fine. Unit testing comes at the very basic level of testing as it is carried out as and when unit of code is developed or particular functionality is built. Unit Testing is a white Box Testing. The main objective of Unit Testing is to  test each part of the program and to show it's working fine

  Was this answer useful?  Yes

Main objective of Unit Testing is devloper who devloped corresponding module or control should ensure that there is no syntax or logical or runtime error in there coding.

  Was this answer useful?  Yes

Test Objective for Unit Testing


The primary goal of unit testing is to take the smallest piece of testable software in the application, isolate it from the remainder of the code, and determine whether it behaves exactly as you expect. Each unit is tested separately before integrating them into modules to test the interfaces between modules. Unit testing has proven its value in that a large percentage of defects are identified during its use.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions