Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestBenchmarkReadMemStatsBeforeFirstRun (0.3 sec)

  1. src/testing/sub_test.go

    	var first = true
    	Benchmark(func(b *B) {
    		if first && b.N != 1 {
    			panic(fmt.Sprintf("Benchmark() first N=%v; want 1", b.N))
    		}
    		first = false
    	})
    }
    
    func TestBenchmarkReadMemStatsBeforeFirstRun(t *T) {
    	var first = true
    	Benchmark(func(b *B) {
    		if first && (b.startAllocs == 0 || b.startBytes == 0) {
    			panic("ReadMemStats not called before first run")
    		}
    		first = false
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
Back to top