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
This commit is contained in:
Michael McGuinness
2025-04-22 14:40:16 +00:00
parent edc50c7510
commit fee71e7740
404 changed files with 211048 additions and 2820 deletions
+5 -5
View File
@@ -9,12 +9,12 @@ import (
"github.com/stretchr/testify/assert"
)
func TestCreateNetwork(t *testing.T) {
func TestDepNetworkGet(t *testing.T) {
ctx := context.Background()
ncfg, cleanup := test.CreateNetwork(t, ctx)
assert.NotNil(t, ncfg)
assert.NotNil(t, cleanup)
name := test.DepNetwork.Get(t, ctx)
assert.NotNil(t, name)
cleanup()
newName := test.DepNetwork.Get(t, ctx)
assert.Equal(t, name, newName)
}