Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "testing"
  6. )
  7.  
  8. func TestXXX(t *testing.T) {
  9. t.Run("x", func(t *testing.T) {
  10. fmt.Println("0")
  11. })
  12. t.Run("x", func(t *testing.T) {
  13. fmt.Println("1")
  14. })
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement