Reputation:
What is the meaning of an "incident" in software testing?
Upvotes: 2
Views: 10443
Reputation: 89
An incident in Software Testing is basically any situation where the system exhibits questionable behaviour, but often we refer to an incident as a defect only when the root cause is some problem in the item we are testing.
Other causes of incidents includes mis-configuration or failure of the test environment, corrupted test data, bad tests, invalid expected results and tester mistakes.
This means to indicate the possibility that a specious behaviour is not necessarily a true defect.
When an incident is initially recognized, an incident report should be generated with a set of supporting information as:
Upvotes: 1
Reputation: 1333
Testing is a check of relationship between three parties
"Incident" is the name of a situation when there is a difference between SOFT and TEST. If you use a tool to report the success of test case, then you would often see that an incident is marked with red, a non-incident with green.
Depending on the relationship between these 3 parties, there can be different situations for an incident to occur:
Looking at these 5 situations, we see that
So a green does not guarantee that your software is good, a red incident does not guarantee that your software is bad (here I use "good" and "bad" mean that the SOFT follows the SPEC or not)
Upvotes: 0
Reputation: 310
Incident" in testing means unexpected behaviour of the software.
This also a type of bug but it may or may be reproduced.
This incident bugs will be raised due to Hard ware failures, external factors to the software application.
Upvotes: 0
Reputation:
At the time of executing/run a test, you sometimes found that the actual results vary from expected results.
When the actual result is differ from the expected result it is called incidents but incidents differs from bugs because it arise because of miss- configuration , corrupted data
incident is Any event occurring during testing that requires inspection or review.
Upvotes: 4
Reputation: 346417
It sounds like a term that is deliberately vague, to mean "something happened that someone needs to take a look at".
The point is probably that when a test (manual or automated) fails, it can be for various reasons:
Upvotes: 1
Reputation: 308948
It usually means something like "we found a defect or anomalous behavior of some kind". I'm not sure the terminology is universal.
Where's the confusion? What definitions have you been given?
Upvotes: 0