57.3k views
0 votes
Which of the following best describes the behaviors defined in a use case that should be covered by tests?

A. Positive path and negative path
B. Basic, exception and error
C. Normal, error, data, and integration
D. Control flow, data flow and decision paths

User Prgrm
by
8.0k points

1 Answer

4 votes

Final answer:

The behaviors defined in a use case that should be covered by tests include basic, exception, and error paths.

Step-by-step explanation:

The correct option that best describes the behaviors defined in a use case that should be covered by tests is B. Basic, exception and error.

In software development, a use case represents a specific interaction or behavior of the system. Tests for a use case should cover the basic flow of events, as well as exceptions and errors that can occur.

For example, if we have a use case for a login system, the test cases should cover the successful login scenario (basic flow), as well as scenarios such as entering an incorrect password (exception) and encountering server errors (error).

User Eddiem
by
7.6k points