10 lines
140 B
Go
10 lines
140 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkADCSCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "adcs", adcsCollectorMethod)
|
||
|
}
|