QA2 Flashcards

1
Q

What is a Test Case?

A

Set of conditions and/or variables under which a tester will determine if a requirement upon an application is satisfied

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

What does Test Case include?

A

When planning for testing the test case:

-Test case ID

-The purpose (Title, Description) of the test case

-An instruction on how to get from the application base state to a verifiable application output or expected result

-Expected result

When execute test cases we need two more columns:

-Actual result

-PASS/FAIL indication

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

What is a test plan?

A

-Document that describes the objectives, scope, approach, and focus of a software testing effort.

-The highest level Software testing document possible
-Doesn’t include test cases
-Developed by QA team with other team possibly contributing (everybody is involved at some level)

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

What does Test Plan include?

A
  • Objective of testing effort
    • Software product overview
  • Project risk analysis
    • Testing priorities and focus
    • Scope and limitations of testing
    • Test tools to be used, including versions, patches, etc.
    • Personnel allocation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Write test cases for a text field?

A

-5 test cases for capacity including 2 for each boundary and one for the class between boundaries

-3 test cases for valid/invalid input of letters, digits, special characters

-One test cases for each allowed special character (email field as an example)

-Functionality testing if there is any functionality (validation of input as an example, case sensitivity, required field, etc.)

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

What is Test matrix?

A

Data collection mechanism. It provides a structure for testing the effect of combining two or more variables, circumstances, types of hardware, or events. Row and column headings identify the test conditions. Cells keep the results of test execution.

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

If there are so many settings/options to choose, how to write test cases?

A

-Test cases should be developed for all most common potential scenarios

-They should cover most of the positive input

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

Beside test case & test plan, what documents are required to write?

A

-Check Lists
-Test matrices
-Test design specs
-End-to-end tests
-Test summary reports
-Bug reports

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

Describe risk analysis

A

Risk analysis means the actions taken to avoid things going wrong on a software development project, things that might negatively impact the scope, quality, timeliness, or cost of a project. This is, of course, a shared responsibility among everyone involved in a project. However, there needs to be a ‘buck stops here’ person who can consider the relevant trade offs when decisions are required, and who can ensure that everyone is handling their risk management responsibilities.

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

Testing boundary conditions? Why? How?

A

-Boundary value analysis is a methodology for designing test cases that concentrates software testing effort on cases near the limits of valid ranges.

-Boundary value analysis is a method which refines equivalence partitioning. It generates test cases that highlight errors better than equivalence partitioning. The trick is to concentrate software testing efforts at the extreme ends of the equivalence classes. At those points when input values change from valid to invalid errors are most likely to occur. As well, boundary value analysis broadens the portions of the business requirement document used to generate tests

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

What is the difference between a test case and a test plan?

A

-Test plan is the most comprehensive Software Testing document that describes the objectives, scope, approach, and focus of a software testing effort

-Test case is the smallest Software Testing document that describes both typical and atypical situation that may occur in the use of an application

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

Which documents would you refer to when creating Test Cases?

A

All business and technical documentation available:

-PRD – Product Requirements Document
-BRD – Business Requirements Document
-Functional Specifications
-Manuals and Help
-Use Cases
-Test Design
-Third party publications (books, published by independent authors)

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

What is Business Requirements Document (BRD)?

A

BRD is written by the Business Analysts. It details the business solution for a project including the documentation of customer needs and expectations.

-The most common objectives of the BRD are:
-To gain agreement with stakeholders
-To provide a foundation to communicate to a technology service provider what the solution needs to do to satisfy the customer’s and business’ needs
-To provide input into the next phase for this project
-To describe what not how the customer/business needs will be met by the solution

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