Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for fileWithLineNumWrappedInnerForTest (0.24 seconds)

  1. utils/utils_test.go

    			}
    		})
    	}
    }
    
    //go:noinline
    func fileWithLineNumWrappedInnerForTest() string {
    	return FileWithLineNum()
    }
    
    //go:noinline
    func fileWithLineNumWrappedOuterForTest() (got, want string) {
    	_, file, line, _ := runtime.Caller(0)
    	got = filepath.ToSlash(fileWithLineNumWrappedInnerForTest())
    	want = fmt.Sprintf("%s:%d", filepath.ToSlash(file), line+1)
    	return got, want
    }
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:31:30 GMT 2026
    - 5.5K bytes
    - Click Count (0)
Back to Top