• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/21

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

21 Cards in this Set

  • Front
  • Back
Test Case Specification
A document specifying a set of test cases (objective, inputs, test actions, expected results, and execution preconditions) for a test item.
Test Design
(1) A document specifying the test conditions (coverage items) for a test item, the detailed test approach and identifying the associated high level test cases.
(2) The process of transforming general testing objectives into tangible test conditions and test cases.
Test Execution Schedule
A scheme for the execution of test procedures. Note: The test procedures are included in the test execution schedule in their context and in the order in which they are to be executed.
Test Procedure Specification
A document specifying a sequence of actions for the execution of a test. Also known as test script or manual test script.
Test Script
Commonly used to refer to a test procedure specification, especially an automated one.
Traceability
The ability to identify related items in documentation and software, such as requirements with associated tests.
Black-Box Test Design Technique
Procedure to derive and/or select test cases based on an analysis of the specification, either functional or non-functional, of a component or system without reference to its internal structure.
Experience-Based Test Design Technique
Procedure to derive and/or select test cases based on the tester’s experience, knowledge and intuition.
Test Design Technique
Procedure used to derive and/or select test cases.
White-Box Test Design Technique
Procedure to derive and/or select test cases based on an analysis of the internal structure of a component or system.
Boundary Value Analysis
A black box test design technique in which test cases are designed based on boundary values.
Decision Table Testing
A black box test design technique in which test cases are designed to execute the combinations of inputs and/or stimuli (causes) shown in a decision table.
Equivalence Partitioning
A black box test design technique in which test cases are designed to execute representatives from equivalence partitions. In principle test cases are designed to cover each partition at least once.
State Transition Testing
A black box test design technique in which test cases are designed to execute valid and invalid state transitions.
Use Case Testing
A black box test design technique in which test cases are designed to execute scenarios of use cases.
Code Coverage
An analysis method that determines which parts of the software have been executed (covered) by the test suite and which parts have not been executed, e.g. statement coverage, decision coverage or condition coverage.
Decision Coverage
The percentage of decision outcomes that have been exercised by a test suite. 100% decision coverage implies both 100% branch coverage and 100% statement coverage.
Statement Coverage
The percentage of executable statements that have been exercised by a test suite.
Structure-Based Testing / White-Box Testing
Testing based on an analysis of the internal structure of the component or system.
Exploratory Testing
An informal test design technique where the tester actively controls the design of the tests as those tests are performed and uses information gained while testing to design new and better tests.
Fault Attack / Attack
Directed and focused attempt to evaluate the quality, especially reliability, of a test object by attempting to force specific failures to occur.