Search⌘ K
AI Features

Testing the Application with End-to-End Tests

Explore how to apply end-to-end testing in event-driven Golang applications. Learn to write feature-based scenarios using Gherkin that cover the entire application, including third-party services. Understand how E2E tests differ from behavior-driven development and how to organize your test files effectively within a distributed microservices context.

The final form of testing we will cover is end-to-end (E2E) testing. E2E testing will encompass the entire application, including third-party services, and have nothing replaced with any test doubles. The tests should cover all of the processes in the application, which could ...