DEV Community

Discussion on: How to test methods in Go

Collapse
 
plutov profile image
Alex Pliutau

If you are doing table driven tests in Go it's better to run each subtest separately with t.Run. Check it here - dev.to/plutov/table-driven-tests-i...