Database Testing
Database Testing
Manual testing is the process in which QA analysts execute tests one-by-one in an individual manner. The
purpose of manual testing is to catch bugs and feature issues before a software application goes live.
Automated testing is the process in which testers utilize tools and scripts to automate testing efforts.
1. Exploratory Testing: Testers explore the application without predefined test cases. They
use their experience and intuition to uncover defects.
2. Ad-hoc Testing: Testers perform tests based on their knowledge of the application
without a formal test plan.
3. Functional Testing: Verify that the software functions according to the specified
requirements. Techniques include:
o Smoke Testing: Execute a subset of test cases to check if the basic functionality
is working.
o Regression Testing: Re-test existing functionality to ensure that new changes do
not introduce defects.
o User Acceptance Testing (UAT): End-users validate the software's usability and
functionality.
4. Non-functional Testing: Assess non-functional aspects like performance, security, and
usability.
o Performance Testing: Evaluate the application's speed, responsiveness, and
scalability.
o Security Testing: Identify vulnerabilities and ensure data protection.
o Usability Testing: Assess the user-friendliness of the application.
5. Compatibility Testing: Ensure the software functions correctly across different devices,
browsers, and operating systems.
6. Boundary Value Analysis: Test input values at the boundaries of defined ranges to
uncover defects related to boundary conditions.
7. Equivalence Partitioning: Divide input data into classes or partitions to test
representative values from each class.
8. Error Guessing: Testers use their intuition and domain knowledge to identify potential
error-prone areas.