Created
September 18, 2021 14:48
-
-
Save agusrichard/d37dc23c1dfd3b6e66b2342b90ce1b74 to your computer and use it in GitHub Desktop.
main_test.go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "testing" | |
func BenchmarkCalculate(b *testing.B) { | |
for n := 0; n < b.N; n++ { | |
Calculate(1, 2) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment