Files
query-orchestration/internal/test/network_test.go
T
Michael McGuinness 0815cb35fb Merged in feature/lint (pull request #87)
Basic Lint Checks

* basic
2025-03-05 12:05:46 +00:00

21 lines
308 B
Go

package test_test
import (
"context"
"testing"
"queryorchestration/internal/test"
"github.com/stretchr/testify/assert"
)
func TestCreateNetwork(t *testing.T) {
ctx := context.Background()
ncfg, cleanup := test.CreateNetwork(t, ctx)
assert.NotNil(t, ncfg)
assert.NotNil(t, cleanup)
cleanup()
}