MCPcopy Create free account
hub / github.com/cockroachdb/apd / TestParseDecTest

Function TestParseDecTest

gda_test.go:190–208  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

188}
189
190func TestParseDecTest(t *testing.T) {
191 files, err := ReadDir(testDir)
192 if err != nil {
193 t.Fatal(err)
194 }
195 for _, fi := range files {
196 t.Run(fi.Name(), func(t *testing.T) {
197 f, err := os.Open(filepath.Join(testDir, fi.Name()))
198 if err != nil {
199 t.Fatal(err)
200 }
201 defer f.Close()
202 _, err = ParseDecTest(f)
203 if err != nil {
204 t.Fatal(err)
205 }
206 })
207 }
208}
209
210var GDAfiles = []string{
211 "abs",

Callers

nothing calls this directly

Calls 3

ReadDirFunction · 0.85
ParseDecTestFunction · 0.85
RunMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…