efe87321b2
Testing Tweaks * parallel * slowestquery * split * cleanup * health * dynamiccores * go * profile * timeout * commitmychanges * taskfile * sqlcheckstart * client * cost * ctxtimeout
18 lines
275 B
Go
18 lines
275 B
Go
package test_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"queryorchestration/internal/test"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDepNetworkGet(t *testing.T) {
|
|
name := test.GetNetwork(t)
|
|
assert.NotNil(t, name)
|
|
|
|
newName := test.GetNetwork(t)
|
|
assert.Equal(t, name, newName)
|
|
}
|