fee71e7740
Feature/postprocessing * tests * passtest * fixshorttests * mosttests * improvingbasedockerfile * testspeeds * testing * host * canparallel * clean * passfullsuite * singlepagemax * test * findfeatures * findstables * tbls * tablestoo * tablestoo * lateraltests * tableloc * cleanup * inlinetable * childids * cleanup * tests
21 lines
334 B
Go
21 lines
334 B
Go
package test_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"queryorchestration/internal/test"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDepNetworkGet(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
name := test.DepNetwork.Get(t, ctx)
|
|
assert.NotNil(t, name)
|
|
|
|
newName := test.DepNetwork.Get(t, ctx)
|
|
assert.Equal(t, name, newName)
|
|
}
|