Functionality Tests Flashcards

1
Q

With functionality tests, are we testing multiple components at a time?

A

No, we test one component at a time

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

What does positive testing involve?

A

We are testing if a component is working according to the FRD

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

What is another name for positive testing?

A

Happy path test

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

What does negative testing involve?

A
  • We try to come up with multiple ways a component can fail
  • Purposefully causing a failure, to make sure it fails properly
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does boundary testing involve?

A

Validating input range

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

What are the two types of validation under boundary testing?

A
  1. UI level validation
  2. DB level validation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is UI level validation?

A

The app screen won’t even let you move forward without the required fields filled in

ex: Can’t leave login or password field blank on a login screen, leading to an error message

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

What is DB level validation?

A

Needs a trigger. Database won’t accept input because some input was missing or incorrect

ex: Password field on login screen is filled in, but password is incorrect leading to an error message

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

What does smoke testing involve

A
  • First test run of a new build, to see if the build is stable
  • Without any guidance from RD, based on user’s observations, self-navigation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does ADHOC/ Exploratory testing involve?

A

Identify usability and user-friendliness of the app without having prior knowledge of the app

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

What is functional test?

A

Will include all the different types of functionality testing, except for smoke test

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