Guest User

Untitled

a guest
Feb 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package main_test
  2.  
  3. import "testing"
  4.  
  5. func TestMain(t *testing.T) {
  6. testCases := []struct {
  7. name string
  8. }{
  9. {
  10. name: "test name",
  11. },
  12. }
  13.  
  14. for _, testCase := range testCases {
  15. testCase := testCase
  16. t.Run(testCase.name, func(t *testing.T) {
  17. t.Parallel()
  18. })
  19. }
  20. }
Add Comment
Please, Sign In to add comment