How many test cases u will write for Adhoc testing?
Answers were Sorted based on User's Feedback
Answer / nitin sharma
We do not have any planned documents for adhoc
testing,Tester generally do it with their previous
experience of the application.So we do not write test cases
for that.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / rashmi ranjan patra
we are doing the adhoc testing based on our experience then
in bug tracking tool we filter those bug and we are writing
the test case based on that senario, it is helpfull for
final round of testing before build going for staging.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / sathya
Hi Friends
we no need to write test cases for ad hoc testing. Genrally we take the any features and testing happen.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rakshan
Please note few points:
1.Informal
2.Without plan
3.Not detailed knowledge tester have
4.It can miss flaws
5.Not documented
| Is This Answer Correct ? | 1 Yes | 0 No |
if software faild in customer environment what we called a)error b)fault c)defect d)failure
How to write test case for the library system?
write a test case for telephone billing ?
Why does the boundary value analysis provide good test cases?
Write test caes on 1.excel sheet 2. gmail attachments 3.raiway ticketing 4.negative test cases on net banking
Describe to me what you see as a process. Not a particular process, just the basics of having a process.
Write a test case for computer keyboard?
can one defect be mapped to more than one test script in manual testing
What is explain security testing?
How to write test case for android application,alarm clock,LCD display screen. And after seeting alarm mobile get switch off how to write test case..
suppose an interviewer asks you to write a testcase for a login window (and application is not given to test). Should we write actual results or expected results or both?
Roads concatenation Problem Consider we have some GIS (Geo Information System) operating over some road network. Each road represented as array of two-dimensional geographical points. Road network is a set of roads. System has function called Concatenate(). This function takes raw road network and should return optimized road network. Optimization lies in concatenating roads with matching start or end points, i.e. if road AB end point matches road BC start point, then optimized network should contain concatenated road AC. Optimized network shouldn’t contain two roads which can be concatenated. Your task is to suggest set of test cases for Concatenate() function in order to make sure it works correctly. public interface IPoint { double Lat { get; } double Lon { get; } } public Road : List<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);