mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
15 lines
195 B
Go
15 lines
195 B
Go
|
package netstorage
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestInitStopNodes(t *testing.T) {
|
||
|
for i := 0; i < 3; i++ {
|
||
|
Init([]string{"host1", "host2"}, 0)
|
||
|
runtime.Gosched()
|
||
|
MustStop()
|
||
|
}
|
||
|
}
|