Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestIssue820 (0.1 sec)

  1. src/math/big/rat_test.go

    			testRatBin(t, i, "Quo", (*Rat).Quo, arg)
    		}
    
    		if test.y != "0" {
    			arg = ratBinArg{test.prod, test.y, test.x}
    			testRatBin(t, i, "Quo symmetric", (*Rat).Quo, arg)
    		}
    	}
    }
    
    func TestIssue820(t *testing.T) {
    	x := NewRat(3, 1)
    	y := NewRat(2, 1)
    	z := y.Quo(x, y)
    	q := NewRat(3, 2)
    	if z.Cmp(q) != 0 {
    		t.Errorf("got %s want %s", z, q)
    	}
    
    	y = NewRat(3, 1)
    	x = NewRat(2, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
Back to top