Building the Foundation for End to End Tests
In this lesson, you’ll learn where to put end-to-end tests, and we'll discuss how to build a solid foundation for end-to-end tests, which is very different from unit tests.
We'll cover the following...
Locating end-to-end tests
In Go, unit tests reside in the directory of the package they test. Where should you put end-to-end tests? For a ...