End-to-end testing is a way of performing testing used to test the business flow of an application or system from start to finish. It can be a part of integration testing to check dependencies between components of the system.
Questions tagged [end-to-end]
42 questions
4
votes
5 answers
Should I re-test fix at system level when the issue is at unit level?
I found a defect in manual end-to-end tests. We were able with developers to isolate the possible root cause in one of the components. We wrote a unit test that reproduces the defect at unit level.
Verifying the fix will be as simple re-running the…
dzieciou
- 10,512
- 9
- 47
- 100
1
vote
6 answers
Is this a good design to use Unit Tests Framework for E2E testing?
Is this a really good idea to use Unit Test Framework for End-To-End testing ?
I'm thinking about method annotations to trigger test execution.
Since we don't have a lot of control about the execution order and concurrence...
Is this a common way to…
Rabskatran
- 123
- 3
1
vote
2 answers
In what way to check that a multi-platform software is working as expected?
Let's say we have a chat software that can be used via:
a mobile application
standalone app
web application
A User using one of this platform can use the software to communicate with another User in another platform.
When we talk about End to end…
acejazz
- 198
- 4
1
vote
2 answers
E2E testing to simulate the external system failure
Our system is publishing price update to an external system through HTTP and listens to a queue for the processing results. Based on the results, different messages will be shown to the users.
We are implementing E2E test cases now. Obviously, we…
Hammer
- 111
- 2