Atlas › Test

TestNode

Exact test identity: go.temporal.io/server/tools/testrunner/TestNode

Package
go.temporal.io/server/tools/testrunner
Suite / test hierarchy
TestNode
Test
TestNode
Introduced at
junit.go ×3 Frontier kind: Joint frontier
Covered ranges
3
Covered lines
9
Covered files
1

Covered source

Expand a file to inspect source; the > gutter marks covered lines.

go.temporal.io/server/tools/testrunner/junit.go 9 covered LOC · 3 ranges

Open complete file

353 }
354
355 > func (n node) visitor(path ...string) func(yield func(string, node) bool) { junit.go
356 > return func(yield func(string, node) bool) {
357 > for name, child := range n.children {
358 > path := append(path, name)
359 > if !yield(strings.Join(path, "/"), child) {
360 return
361 }
362 > child.visitor(path...)(yield) junit.go
363 }
364 }
365 }
366
367 > func (n node) walk() iter.Seq2[string, node] { junit.go
368 > return n.visitor()
369 > }