Types of Testing Flashcards

Understand types of testing

1
Q

Integration Testing

A

Testing the interaction between different modules or services within an application to ensure they work together properly

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

System Testing

A

Testing the entire system as a whole to ensure that it meets the specific requirements

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

Acceptance Testing

A

Determine whether the software is ready for delivery. Ensures the system meets the business requirements and is often done by end-users or clients

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

Sanity Testing

A

A quick test performed after receiving a new build to check if the critical functionalities work as expected without major issues

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

Smoke Testing

A

A preliminary test to check if the basic functions of an application are working before moving forward with more detailed testing

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

Exploratory Testing

A

Unscripted testing where testers explore the application to discover defects or improvements without predefined test cases

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

Ad-hoc Testing

A

Informal testing conducted without a structured approach, aiming to find defects that might have been missed by other types of testing

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

Regression Testing

A

Re-testing of previously tested functionality after changes (bug fixes or new features) to ensure the updates haven’t introduces new issues

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

Usability Testing

A

Evaluates how user-friendly and intuitive the software is from an end-users perspective

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

Compatibility Testing

A

Ensure that the software works on different devices, browsers, operating systems, and environments

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

Localization and Internalization Testing

A

Focuses on adapting the software to different languages, regions, or cultures by verifying content, layout, and functionality. E.g. Can display different languages without breaking the layout or functionality, strings and characters are correctly supported, and region formatting (dates, time, numbers, currencies)

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

Unit Testing

A

Testing individual units or components of the software to ensure they function properly. E.g. testing functions from the code

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

API Testing

A

Checks the interactions between different software systems via Application Programming Interfaces (APIs). This includes validation of request-response and data formats

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

Database Testing

A

Verifies that database operations like data storage, retrieval, and integrity are working as expected. E.g. CRUD

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

UAT Testing

A

Performed by end users or stakeholders to validate that the system meets business requirements and is ready for release.

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

Interface Testing

A

Tests the interfaces between different modules or systems, ensuring data exchange happens correctly and reliably

E.g. Unit testing, integration testing, API testing, GUI testing, security testing, load testing, performance testing, regression testing, system testing, and acceptance testing

17
Q

Security Testing

A

Checks for vulnerabilities in the software, ensuring that the system is protected against threats like unauthorized access, data breaches, and attacks.

18
Q

Stress Testing

A

Pushes the system beyond its normal operational capacity to test its breaking point and observe how it recovers from failure.

19
Q

Load Testing

A

Checks the system’s behavior under a specific expected load to ensure it can handle a certain number of concurrent users or transactions.

20
Q

Performance Testing

A

Measures how the system performs under various conditions. It includes testing the speed, scalability, and stability of the software.

21
Q

Scalability Testing

A

Evaluates the software’s ability to scale up or down, in terms of users, data, or resources, without compromising performance.

22
Q

Reliability Testing

A

Ensures that the system can function consistently under expected conditions over time, without failure.

23
Q

Compliance Testing

A

Ensures the system meets certain regulations, standards, or laws, such as GDPR for data privacy or industry-specific standards.

24
Q

Maintainability Testing

A

Evaluates how easy it is to modify, update, or fix the system. It ensures the software can be maintained with minimal effort.

25
Q

Boundary Testing

A

Tests the boundaries or edges of input domains. Identify defects at the limits of input values where errors are more likely to occur.

  • The smallest (minimum) and largest (maximum) values of an input range.
  • Values just inside (valid) and just outside (invalid) the boundaries.
26
Q

State Transition Testing

A

Verifies behavior when the system transitions between different states based on events or inputs.