Testing PPT
Testing PPT
Types of testing
• Tests can be manual or automated, and include the following types of
tests:
✓unit tests,
✓integration tests,
✓functional tests,
✓end-to-end tests,
✓acceptance tests,
✓performance tests, and
✓smoke tests.
Manual testing
• Manual testing is done in person, by clicking through the application
or interacting with the software and APIs with the appropriate
tooling.
• This is very expensive since it requires someone to setup an
environment and execute the tests themselves, and it can be prone to
human error as the tester might make typos or omit steps in the test
script.
Manual Testing
• Manual Testing is a type of software testing in which test cases are
executed manually by a tester without using any automated tools.
• The purpose of Manual Testing is to identify the bugs, issues, and
defects in the software application.
• Manual software testing is the most primitive technique of all testing
types and it helps to find critical bugs in the software application.
Automated tests
• Automated tests, on the other hand, are performed by a machine
that executes a test script that was written in advance.
• These tests can vary in complexity, from checking a single method in a
class to making sure that performing a sequence of complex actions
in the UI leads to the same results.
• It's much more robust and reliable than manual tests – but the quality
of your automated tests depends on how well your test scripts have
been written.
Manual Testing Vs Automated T
Manual Testing Automated Testing