Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestMinMax (0.08 sec)

  1. src/runtime/minmax_test.go

    				t.Errorf("max(%v, %v) = %v, want %v", y, x, z, y)
    			}
    		}
    	}
    }
    
    func TestMinMaxInt(t *testing.T)    { testMinMax[int](t, -7, 0, 9) }
    func TestMinMaxUint8(t *testing.T)  { testMinMax[uint8](t, 0, 1, 2, 4, 7) }
    func TestMinMaxString(t *testing.T) { testMinMax[string](t, "a", "b", "c") }
    
    // TestMinMaxStringTies ensures that min(a, b) returns a when a == b.
    func TestMinMaxStringTies(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 01:41:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/slices/sort_test.go

    		t.Errorf("Stable wasn't stable on %d ints", n)
    	}
    }
    
    type S struct {
    	a int
    	b string
    }
    
    func cmpS(s1, s2 S) int {
    	return cmp.Compare(s1.a, s2.a)
    }
    
    func TestMinMax(t *testing.T) {
    	intCmp := func(a, b int) int { return a - b }
    
    	tests := []struct {
    		data    []int
    		wantMin int
    		wantMax int
    	}{
    		{[]int{7}, 7, 7},
    		{[]int{1, 2}, 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top