10 lines
134 B
Go
10 lines
134 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkNPSCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "nps", newNPSCollector)
|
||
|
}
|