Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestXxx (0.13 sec)

  1. src/go/doc/testdata/testing.go

    // It is intended to be used in concert with the “go test” utility, which automates
    // execution of any function of the form
    //     func TestXxx(*testing.T)
    // where Xxx can be any alphanumeric string (but the first letter must not be in
    // [a-z]) and serves to identify the test routine.
    // These TestXxx routines should be declared within the package they are testing.
    //
    // Functions of the form
    //     func BenchmarkXxx(*testing.B)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	if !isTestParam(fn.Type.Params.List[0].Type, prefix[:1]) {
    		return
    	}
    
    	if tparams := fn.Type.TypeParams; tparams != nil && len(tparams.List) > 0 {
    		// Note: cmd/go/internal/load also errors about TestXXX and BenchmarkXXX functions with type parameters.
    		// We have currently decided to also warn before compilation/package loading. This can help users in IDEs.
    		at := tokenRange{tparams.Opening, tparams.Closing}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top