Test Cases - Best Practices Flashcards

1
Q

What is a test case?

A

It is a short sequence of actions that verifies a specific feature or functionality.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a title?

A

A simple, self-explanatory sentence describing system behavior under specific conditions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a pre-condition?

A

It is conditions the system should be in before running the test case.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are test steps?

A

A list of actions that must be taken to complete the test.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the 3 components of a test case title?

A

An object, action, and conditions

Ex. Verify user is able to login with valid credentials
Object - user
Action - able to login
Condition - valid credentials

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are positive test cases?

A

Testing that something should happen actually happens when valid input is used.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are negative test cases?

A

Testing that something that should not happen, does not happen by using invalid input.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly