Home | History | Annotate | Download | only in net

Lines Matching refs:tt

73 	for _, tt := range tests {
74 os.Setenv("GODEBUG", tt.godebug)
75 if got := goDebugString(tt.key); got != tt.want {
76 t.Errorf("for %q, goDebugString(%q) = %q; want %q", tt.godebug, tt.key, got, tt.want)
82 for _, tt := range []struct {
95 n, i, ok := dtoi(tt.in)
96 if n != tt.out || i != tt.off || ok != tt.ok {
97 t.Errorf("got %d, %d, %v; want %d, %d, %v", n, i, ok, tt.out, tt.off, tt.ok)