mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-27 14:40:18 +01:00
16 lines
265 B
Go
16 lines
265 B
Go
|
package server
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func BenchmarkEncodeConcat(b *testing.B) {
|
||
|
for i := 0; i < b.N; i++ {
|
||
|
_ = Encode(INIT_SEED, 5) + Encode(INIT_SEED, 5)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func BenchmarkEncodeLonger(b *testing.B) {
|
||
|
for i := 0; i < b.N; i++ {
|
||
|
_ = Encode(INIT_SEED, 10)
|
||
|
}
|
||
|
}
|