Please, Go developers, do not use Testify’s suite package. There’s not much support for the de-facto tabular test pattern, where you have tests nested within tests. Plus, it lacks any IDE integration niceties, such as running specific scenarios. Just use the built-in test package.
Nothing wrong with the Testify project itself, mind you. I use the assert package all the time. But the suite package just doesn’t gel with how unit testing is traditionally done in Go.