Types of Tests Flashcards

1
Q

What type of test is testing with full knowledge of code?

A

White box

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

What is white box testing?

A

Testing with full knowledge of code

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

What type of test is unit test

A

White box

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

What does unit testing involve

A

Code level validation, sentences of code at a time

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

What is gray box testing?

A

Testing with some knowledge of code

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

What type of test is testing with some knowledge of code?

A

Gray box

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

What type of test involves validating communication between systems?

A

Gray box

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

What type of test involves API

A

Gray box

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

What kind of testing does gray box testing involve?

A

Integration testing - validating communication between systems

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

What type of test is testing with no knowledge of code?

A

Black box

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

What is black box testing?

A

Testing with no knowledge of code

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

What type of testing is most effective and why?

A

Black box testing, because it eliminates bias due to knowledge of code. When you don’t have knowledge of code, your guideline is the RD

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

What are the different types of black box testing?

A
  • Performance test
  • Functionality test
  • System test
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the point of performance test?

A

Monitor response time and identify bottle necks

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

What is the point of functionality test?

A
  • It tests if app is responding to user actions properly according to the RD
  • Validates singular functions of the app
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the point of system test?

A

Tests multiple elements of an app working together to complete an app