2.2 Test Levels and Types Flashcards

1
Q

What are the five test levels?

A
  • Component Testing / Unit Testing (individual components in isolation)
  • Component/Unit Integration Testing (interactions between components)
  • System Testing (whole system or product against specifications, including functional & nonfunctional)
  • System Integration Testing (interfaces of the system with other systems and external services)
  • Acceptance Testing (validating business needs are met and system is ready to deploy)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Define functional testing.

A

Testing of “what” the test object does versus what it should do. Evaluating the functions a component or system performs, checking for completeness, correctness, and appropriateness.

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

What attributes distinguish test levels?

A

The test object, test objectives, test basis, defects and failures, and the approach and responsibilities.

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

What types of Acceptance Testing are there?

A
  • User Acceptance Testing (UAT)
  • Operational Acceptance Testing
  • Contractual/Regulatory
  • Alpha Testing
  • Beta Testing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define non-functional testing.

A

Testing attributes of a component or system other than it’s intended function. “How well does the system behave?”

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

What are some types of non-functional testing?

A
  • performance efficiency
  • compatibility
  • usability
  • reliability
  • security
  • maintainability
  • portability
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define Regression Testing.

A

Testing done to find any adverse consequences caused by a change to the component or system, possibly including a fix that has already been confirmation tested.

It is advisable to perform an impact analysis to determine what might be affected by a change and set the scope of required regression testing.

With CI or DevOps, Regression is often automated and grows over time.

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

Define Confirmation Testing.

A

Testing to confirm a previously reported defect has been successfully fixed. This may involve re-running previously failed tests, and/or adding new tests to cover changes made to resolve the defect.

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

What is white box testing?

A

Testing based on knowledge of the system’s implementation, structure, code, design, and flows.

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

What is black box testing?

A

Testing based on specifications, deriving tests from documentation external to the test object. Testers have no internal knowledge of the code or design, and focus on whether the system’s behavior meets the design specifications.

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

How are functional and non-functional tests related?

A

Many non-functional tests are derived from functional tests in that the system performs the same function; however, instead of checking the correctness of the function, we monitor the component or system for non-functional issues such as performance, usability, security, reliability, etc.

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