Intro In modern software development, unit testing is a necessity for any serious programming project. One of the challenges when writing unit tests in Go is when our code interacts with files, websites, or any third-party service. Mockery is a library that helps us to deal with such problems. In this…