Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetupError (0.3 sec)

  1. src/testing/quick/quick.go

    		} else {
    			maxCount = *defaultMaxCount
    		}
    	}
    
    	return
    }
    
    // A SetupError is the result of an error in the way that check is being
    // used, independent of the functions being tested.
    type SetupError string
    
    func (s SetupError) Error() string { return string(s) }
    
    // A CheckError is the result of Check finding an error.
    type CheckError struct {
    	Count int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TimeoutReader", Func, 0},
    		{"TruncateWriter", Func, 0},
    	},
    	"testing/quick": {
    		{"(*CheckEqualError).Error", Method, 0},
    		{"(*CheckError).Error", Method, 0},
    		{"(SetupError).Error", Method, 0},
    		{"Check", Func, 0},
    		{"CheckEqual", Func, 0},
    		{"CheckEqualError", Type, 0},
    		{"CheckEqualError.CheckError", Field, 0},
    		{"CheckEqualError.Out1", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top