Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestSkipInternal (0.06 sec)

  1. src/cmd/api/api_test.go

    			t.Errorf("%s: ok = %v; want %v", tt.name, gotOK, tt.ok)
    		}
    		if got := buf.String(); got != tt.out {
    			t.Errorf("%s: output differs\nGOT:\n%s\nWANT:\n%s", tt.name, got, tt.out)
    		}
    	}
    }
    
    func TestSkipInternal(t *testing.T) {
    	if *flagCheck {
    		// not worth repeating in -check
    		t.Skip("skipping with -check set")
    	}
    
    	tests := []struct {
    		pkg  string
    		want bool
    	}{
    		{"net/http", true},
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri May 02 17:06:27 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top