Files
query-orchestration/internal/test/network_test.go
T

21 lines
326 B
Go
Raw Normal View History

package test_test
import (
"context"
"testing"
2025-03-05 12:05:46 +00:00
"queryorchestration/internal/test"
"github.com/stretchr/testify/assert"
)
func TestDepNetworkGet(t *testing.T) {
ctx := context.Background()
name := test.GetNetwork(t, ctx)
assert.NotNil(t, name)
newName := test.GetNetwork(t, ctx)
assert.Equal(t, name, newName)
}