Guest User

Untitled

a guest
Jan 23rd, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. package foo
  2.  
  3. import (
  4. "runtime"
  5. "testing"
  6. )
  7.  
  8. func TestFooWindows(t *testing.T) {
  9. if runtime.GOOS != "windows" {
  10. t.Errorf("failed on windows")
  11. }
  12. }
Add Comment
Please, Sign In to add comment