At what stage the unit testing has to be done?

Questions by nimmi   answers by nimmi

Showing Answers 1 - 21 of 21 Answers

srija

  • Feb 15th, 2007
 

When the coding part for the current module in the present build has been completed and before releasign the build to Integration test, Unit Testing has to be done. Once the individual modules are completed, then those code modules will be tested individually in Unit testing to ensure that the inner working of the code is working properly. Usually by Done by programmers in many companys. In some companys testers will also do unit testing.

Fayaz

  • Nov 26th, 2007
 

This can be difficult to determine. Many modern software applications are so complex, and run in such an interdependent environment, that complete testing can never be done. Common factors in deciding when to stop are: ? Deadlines (release deadlines, testing deadlines, etc.) ? Test cases completed with certain percentage passed ? Test budget depleted ? Coverage of code/functionality/requirements reaches a specified point ? Bug rate falls below a certain level ? Beta or alpha testing period ends

  Was this answer useful?  Yes

Unit testing is conducted by the developers.After developing a software the developers will conduct thsi unit testing before integration testing,Its like reviewing small unit of modules along with code review.

  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