--- tags: - testing --- [[Table driven tests]] [[Testing Golang programs]] We can call t.Parallel() to indicate our test can be run in parallel. This can also be done if we have a test function that executes more test cases via t.Run() because that simply runs a test function we can also call t.Parallel() inside of it.