rename file

This commit is contained in:
Andrea Spacca
2021-07-16 07:59:02 +02:00
parent 1ff9ccd01e
commit 2ecedb93c6
2 changed files with 1 additions and 1 deletions

15
server/token_test.go Normal file
View File

@@ -0,0 +1,15 @@
package server
import "testing"
func BenchmarkTokenConcat(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Token(5) + Token(5)
}
}
func BenchmarkTokenLonger(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Token(10)
}
}