标题: Who can give me the answers to these Interview questions? [打印本页] 作者: gzj_06 时间: 2007-5-26 15:11 标题: Who can give me the answers to these Interview questions? Who can give me the answers to these Interview questions?(Of course in English) Thanks a lot.
1. How do you know when to stop testing?
2. Describe automated capture/playback tools and list their benefits?
3. What would be the Test Objective for Unit Testing? What are the quality measurements to assure that unit testing is complete?作者: gzj_06 时间: 2007-5-26 21:16 标题: 我自己搜到了一个问题的答案 How do you know when to stop testing?
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, e.g. release deadlines, testing deadlines;
• Test cases completed with certain percentage passed;
• Test budget has been depleted;
• Coverage of code, functionality, or requirements reaches a specified point;
• Bug rate falls below a certain level; or Beta or alpha testing period ends.作者: lytton 时间: 2007-5-28 12:01
Q3:unit test objective include that:all the functions had been tested fully.
quality measurements to the UT:the rate of logic coverage can be considered as a whole.That means the logic coverage rate should reach a certain level,for eg. 50% or 70%.
Actually,the logic coverage includes statement coverage,decision coverage,path coverage and so on.Different projects have different coverage rate standards,so it's hard to define a clear quality measurements.