Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestInterfaceValues (0.14 sec)

  1. src/html/template/exec_test.go

    			t.Fatalf("%s: Execute: %v", text, err)
    		}
    		if buf.String() != "<1>" {
    			t.Fatalf("%s: template output = %q, want %q", text, &buf, "<1>")
    		}
    	}
    }
    
    func TestInterfaceValues(t *testing.T) {
    	// golang.org/issue/17714.
    	// Before index worked on reflect.Values, interface values
    	// were always implicitly promoted to the underlying value,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    		if err != nil {
    			t.Fatalf("%s: Execute: %v", text, err)
    		}
    		if buf.String() != "<1>" {
    			t.Fatalf("%s: template output = %q, want %q", text, &buf, "<1>")
    		}
    	}
    }
    
    func TestInterfaceValues(t *testing.T) {
    	// golang.org/issue/17714.
    	// Before index worked on reflect.Values, interface values
    	// were always implicitly promoted to the underlying value,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top