Automation (Chapter 3) Flashcards

1
Q

What is Test Automation?

A

The use of software to control the execution of tests, the comparison of actual outcomes and predicted outcomes, the setting up of test preconditions and other test control and test reporting functions.

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

What does Test Automation help to reduce?

A

Helps reduce costs, reduce the cost of regression testing, reduce human error, and reduce the variance in test quality from different individuals.

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

What is Software Testability?

A

How hard is it to find a fault in software.

The degree to which a system or component facilitates the establishment of test criteria and the performance of tests to determine whether those criteria have been met.

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

Software Testability is dominated by what two practical problems?

A
  1. How to provide the test values to the software.

2. How to observe the results of test execution.

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

What is Observability?

A

Observability deals with how easy it is to observe the behavior of a program in terms of its outputs, effects on the environment and other hardware and software components.

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

What is Controllability?

A

Controllability deals with how easy it is to provide a program with the needed inputs in terms of values, operations, and behavior.

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

Data Abstraction reduces what two key terms?

A

Data Abstraction reduces controllability and observability.

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

What is a Test Case?

A

A Test Case is a multiple artifact with a definite structure.

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

What are Test Case Values?

A

Input values needed to complete an execution of the software under test.

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

What are Expected Results?

A

Results that will be produced by the test if the software behaves as expected.

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

A Test Oracle uses what key term?

A

A Test Oracle uses expected results to decide whether a test passed or failed.

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

What are Prefix and Postfix values?

A

Prefix: inputs necessary to put the software into the appropriate state to receive the test case values.

Postfix: any inputs that need to be sent to the software after the test case values are sent.

P.S. Both deal with test case values, just what happens before and after.

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

What are Verification Values and Exit Values?

A

Verification Values: values that are needed to see the results of the test case values

Exit Values: values that are needed to exit/terminate the program or return it to a stable state.

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

What is a Test Case?

A

The test case values, prefix values, postfix values, and expected results necessary for a complete execution and evaluation of the software under test.

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

What is a Test Set?

A

A set of test cases.

P.S. Also know as a Test Suite.

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

What is an Executable Test Script?

A

A test case that is prepared in a form to be executed automatically on the test software and produce a report.

17
Q

What is a Test Automation Framework?

A

A set of assumptions, concepts, and tools that support test automation.