10 lines
143 B
Go
10 lines
143 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkMemoryCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "memory", NewMemoryCollector)
|
||
|
}
|