Files
query-orchestration/internal/test/network_test.go
T
Michael McGuinness fee71e7740 Merged in feature/postprocessing (pull request #114)
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
2025-04-22 14:40:16 +00:00

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)
}