What Is Manual and Automation Testing
What Is Manual and Automation Testing
Manual testing is the process of testing the software manually to find the
defects. Tester should have the perspective of an end-user and to ensure all
the features are working as mentioned in the requirement document. In this
process, testers execute the test cases and generate the reports manually
without using any automation tools.
Types of Manual Testing:
1. Black Box Testing
2. White Box Testing
3. Unit Testing
4. System Testing
5. Integration Testing
6. Acceptance Testing
Black Box Testing:
Black Box Testing is a software testing method in which testers evaluate the
functionality of the software under test without looking at the internal code
structure. This can be applied to every level of software testing such as Unit,
Integration, System and Acceptance Testing.
White Box Testing:
White Box Testing is also called Glass Box, Clear Box, and Structural Testing.
It is based on application’s internal code structure. In white-box testing, an
internal perspective of the system, as well as programming skills, are used to
design test cases. This testing usually done at the unit level.
Unit Testing:
Unit Testing is also called as Module Testing or Component Testing. It is done
to check whether the individual unit or module of the source code is working
properly. It is done by the developers in developer’s environment.
System Testing:
Testing the fully integrated application to evaluate the systems compliance
with its specified requirements is called System Testing AKA End to End
testing. Verifying the completed system to ensure that the application works
as intended or not.
Integration Testing:
Integration Testing is the process of testing the interface between the two
software units. Integration testing is done by three ways. Big Bang Approach,
Top Down Approach, Bottom-Up Approach
Acceptance Testing:
It is also known as pre-production testing. This is done by the end users
along with the testers to validate the functionality of the application. After
successful acceptance testing. Formal testing conducted to determine
whether an application is developed as per the requirement. It allows
customer to accept or reject the application. Types of acceptance testing are
Alpha, Beta & Gamma.
There are many types of software testing but here we dealt mainly about
Manual and Automation Testing. Here you could read the complete list
of software testing types.
When to use Manual Testing?
Exploratory Testing:
Exploratory testing will be carried out by domain experts. They perform testing
just by exploring the functionalities of the application without having the
knowledge of the requirements.
Usability Testing:
To verify whether the application is user-friendly or not and was comfortably
used by an end-user or not. The main focus in this testing is to check whether
the end-user can understand and operate the application easily or not. An
application should be self-exploratory and must not require training to operate
it.
Ad-hoc Testing:
Ad-hoc testing is quite opposite to formal testing. It is an informal testing type.
In Adhoc testing, testers randomly test the application without following any
documents and test design techniques. This testing is primarily performed if
the knowledge of testers in the application under test is very high. Testers
randomly test the application without any test cases or any business
requirement document.
Regression Testing:
Repeated testing of an already tested program, after modification, to discover
any defects introduced or uncovered as a result of the changes in the software
being tested or in another related or unrelated software components. So,
regression testing is best suitable for automated testing because of frequent
code changes and it is beyond the human capacity to execute tests in a timely
manner.
Load Testing:
It is to verify that the system/application can handle the expected number of
transactions and to verify the system/application behavior under both normal
and peak load conditions. Automated testing is also the best way to complete
the testing efficiently when it comes to load testing. It is best suited for
automation testing.
Performance Testing:
This type of testing determines or validates the speed, scalability, and/or
stability characteristics of the system or application under test. Performance is
concerned with achieving response times, throughput, and resource-utilization
levels that meet the performance objectives for the project or product. It is
best suited for automation testing.
System Testing:
Testing the fully integrated application to evaluate the system’s compliance
with its specified requirements is called System Testing AKA End to End
testing. Verifying the completed system to ensure that the application works
as intended or not.
Unit Testing:
Unit Testing is also called Module Testing or Component Testing. It is done to
check whether the individual unit or module of the source code is working
properly. It is done by the developers in the developer’s environment.
Acceptance Testing:
It is also known as pre-production testing. This is done by the end-users
along with the testers to validate the functionality of the application. After
successful acceptance testing. Formal testing conducted to determine
whether an application is developed as per the requirement. It allows the
customer to accept or reject the application. Types of acceptance testing are
Alpha, Beta & Gamma.