Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestServeMuxHandleFuncWithNilHandler (0.37 sec)

  1. src/net/http/serve_test.go

    		if pattern != tt.pattern || rr.Code != tt.code {
    			t.Errorf("%s %s %s = %d, %q, want %d, %q", tt.method, tt.host, tt.path, rr.Code, pattern, tt.code, tt.pattern)
    		}
    	}
    }
    
    // Issue 24297
    func TestServeMuxHandleFuncWithNilHandler(t *testing.T) {
    	setParallel(t)
    	defer func() {
    		if err := recover(); err == nil {
    			t.Error("expected call to mux.HandleFunc to panic")
    		}
    	}()
    	mux := NewServeMux()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top