12 lines
126 B
Go
12 lines
126 B
Go
|
|
package potency_test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"go.uber.org/goleak"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestMain(m *testing.M) {
|
||
|
|
goleak.VerifyTestMain(m)
|
||
|
|
}
|