13 lines
198 B
Go
13 lines
198 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/474420502/focus/compare"
|
|
pqueuekey "github.com/474420502/focus/priority_queuekey"
|
|
)
|
|
|
|
func Benchmark123(b *testing.B) {
|
|
pqueuekey.New(compare.Int)
|
|
}
|