Are user acceptance test (UAT) and end-to-end (E2E) test the same thing?

Remo H. Jansen picture Remo H. Jansen · May 14, 2015 · Viewed 14.9k times · Source

I've been trying to find the answer to this question online but I have not been able to find good enough to make me feel sure about the answer.

I believe they are essentially the same but user acceptance test (UAT) requires a real user while end-to-end (E2E) test uses automated tools to simulate the users?

Answer

Viktor Malyi picture Viktor Malyi · May 14, 2015

User Acceptance Test is a phase in a typical software development process.

From the other side, End-To-End test is one of the approaches to testing the complex applications which involves all layers of the application to interact with each other during test execution.

It means that you can execute End-to-End test in User Acceptance Test phase, and you can't consider those two terms as one, that has the same meaning.