| |
GeekInterview.com > Interview Questions > Testing > Bug Tracking
| Print | |
Question: What is test data we must specify in test cases? How to log bugs in bugzilla? What is code coverage testing? how do we write load test case for a portal?
|
| February 02, 2007 06:31:49 |
#3 |
| Harika |
Member Since: Visitor Total Comments: N/A |
RE: What is test data we must specify in test cases? |
Test Data : It's the set of data/values needed for executing each test case. In other words, it's the input values you give for executing a test case. Logging bugs in bugzilla :
1. As soon as you login to bugzilla click on "New" link in the actions section. It will take you to the page where you can log a bug along with other details 2. In the bug log page, enter the details like Version, Component, OS, Platform, Severity, Priority, Assigned To, Summary, Description etc. 3. Click on the 'Commit' button. Bug is logged and assigned to the person you have selected.
Code Coverage Testing : It's a white-box testing technique where each function in the code is mapped to a functional point. This is to test the parts of code which is rarely or never accesed under normal conditions. The two types of code coverage testing are Statement coverage and Path coverage testing. |
| |
Back To Question | |