Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for InternalExample (0.18 sec)

  1. src/testing/example.go

    	"slices"
    	"strings"
    	"time"
    )
    
    type InternalExample struct {
    	Name      string
    	F         func()
    	Output    string
    	Unordered bool
    }
    
    // RunExamples is an internal function but exported because it is cross-package;
    // it is part of the implementation of the "go test" command.
    func RunExamples(matchString func(pat, str string) (bool, error), examples []InternalExample) (ok bool) {
    	_, ok = runExamples(matchString, examples)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    {{end}}
    }
    
    var fuzzTargets = []testing.InternalFuzzTarget{
    {{range .FuzzTargets}}
    	{"{{.Name}}", {{.Package}}.{{.Name}}},
    {{end}}
    }
    
    var examples = []testing.InternalExample{
    {{range .Examples}}
    	{"{{.Name}}", {{.Package}}.{{.Name}}, {{.Output | printf "%q"}}, {{.Unordered}}},
    {{end}}
    }
    
    func init() {
    	testdeps.ImportPath = {{.ImportPath | printf "%q"}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/testing/testing.go

    // Systems simulating "go test" should be updated to use MainStart.
    func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
    	os.Exit(MainStart(matchStringOnly(matchString), tests, benchmarks, nil, examples).Run())
    }
    
    // M is a type passed to a TestMain function to run the actual tests.
    type M struct {
    	deps        testDeps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"InternalBenchmark", Type, 0},
    		{"InternalBenchmark.F", Field, 0},
    		{"InternalBenchmark.Name", Field, 0},
    		{"InternalExample", Type, 0},
    		{"InternalExample.F", Field, 0},
    		{"InternalExample.Name", Field, 0},
    		{"InternalExample.Output", Field, 0},
    		{"InternalExample.Unordered", Field, 7},
    		{"InternalFuzzTarget", Type, 18},
    		{"InternalFuzzTarget.Fn", Field, 18},
    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