mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 20:50:18 +01:00
15 lines
229 B
Go
15 lines
229 B
Go
package server
|
|
|
|
import "testing"
|
|
|
|
func BenchmarkEncodeConcat(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
_ = Token(5) + Token(5)
|
|
}
|
|
}
|
|
|
|
func BenchmarkEncodeLonger(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
_ = Token(10)
|
|
}
|
|
}
|