11 lines
234 B
Go
11 lines
234 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkNETFrameworkNETCLRSecurityCollector(b *testing.B) {
|
||
|
// No context name required as collector source is WMI
|
||
|
benchmarkCollector(b, "", NewNETFramework_NETCLRSecurityCollector)
|
||
|
}
|