Skip to content

Commit

Permalink
Simplify e2e intro
Browse files Browse the repository at this point in the history
JuhQ committed Apr 26, 2024
1 parent 0a8ebaf commit 2bb7977
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions end-to-end-testing.md
Original file line number Diff line number Diff line change
@@ -34,11 +34,11 @@ Note that manual testing is still part of daily programming activities, to make

## End-to-end testing vs integration testing

End-to-end testing and integration testing are two different types of software testing methodologies. End-to-end testing is used to test the entire application flow from start to finish, while integration testing is used to test the interaction between different components of the application. End-to-end testing is performed after integration testing. Integration testing is used to test the interaction between different components of the application, while end-to-end testing is used to test the entire application flow from start to finish.
End-to-end testing and integration testing are two different types of software testing methodologies. End-to-end testing is used to test the entire application flow from start to finish, while integration testing is used to test the interaction between different components of the application. End-to-end testing is performed after integration testing.

End-to-end testing is performed from the user's perspective to ensure that the application behaves as expected. It is used to validate the system under test and its components. End-to-end testing is used to simulate real user scenarios and ensure that the application works as expected.
End-to-end testing is performed from the user's perspective to ensure that the application behaves as expected. It is used to simulate real user scenarios and ensure that the application works as expected.

Integration testing is used to test the interaction between different components of the application. It is used to validate that the components work together as expected. Integration testing is used to test the interaction between different modules, services, or systems.
Integration testing is used to test the interaction between different components of the application. Integration testing is used to test the interaction between different modules, services, or systems, and that the components work together as expected


## Common test terminology

0 comments on commit 2bb7977

Please sign in to comment.