MCPcopy Create free account
hub / github.com/dolthub/doltgresql / RunSingleTest

Function RunSingleTest

integration-tests/go-sql-server-driver/testdef.go:556–564  ·  view source on GitHub ↗
(t *testing.T, path string, testName string)

Source from the content-addressed store, hash-verified

554}
555
556func RunSingleTest(t *testing.T, path string, testName string) {
557 def, err := ParseTestsFile(path)
558 require.NoError(t, err)
559 for _, test := range def.Tests {
560 if test.Name == testName {
561 t.Run(test.Name, test.Run)
562 }
563 }
564}
565
566type retryTestingT struct {
567 *testing.T

Callers 1

TestSingleFunction · 0.85

Calls 2

ParseTestsFileFunction · 0.85
RunMethod · 0.80

Tested by 1

TestSingleFunction · 0.68