junit.go ×3

Frontier kind: Code frontier

unlabeled · c_b98c2aa9fce5

5 tests · 13 LOC · 2 files · introduces 0 tests · 13 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
5 ranges13 lines · 2 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
5 ranges13 lines · 2 files · Browse complete extent
All tests (intent)
5 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Introduced files, introduced tests, and structurally relevant concept specializationlog.go ×27 · 113 introduced LOClog.go ×27report_with_alerts, report_with_special_characters · 0 introduced LOCreport_with_alerts, repo…TestAppendAlertsSuite · 0 introduced LOCTestAppendAlertsSuitejunit.go ×1 · 2 introduced LOCjunit.go ×1junit.go ×1 · 2 introduced LOCjunit.go ×1junit.go ×7 · 42 introduced LOCjunit.go ×7log.go ×1 · 2 introduced LOClog.go ×1TestOperatorServiceMetadata, TestWorkflowServiceMetadata · 0 introduced LOCTestOperatorServiceMetad…go.temporal.io/server/tools/testrunner/junit.go · 369 LOCtestrunner/junit.gogo.temporal.io/server/tools/testrunner/log.go · 444 LOCtestrunner/log.goTestOperatorServiceMetadata · introduced test · go.temporal.io/server/common/api/TestOperatorServiceMetadataTestOperatorServiceMetad…TestWorkflowServiceMetadata · introduced test · go.temporal.io/server/common/api/TestWorkflowServiceMetadataTestWorkflowServiceMetad…TestAppendAlertsSuite · introduced test · go.temporal.io/server/tools/testrunner/TestAppendAlertsSuiteTestAppendAlertsSuiteTestAppendAlertsSuite_TruncatesLargeDetails · introduced test · go.temporal.io/server/tools/testrunner/TestAppendAlertsSuite_TruncatesLargeDetailsTestAppendAlertsSuite_Tr…report_with_alerts · introduced test · go.temporal.io/server/tools/testrunner/TestJUnitXMLWellFormed/report_with_alertsreport_with_alertsreport_with_special_characters · introduced test · go.temporal.io/server/tools/testrunner/TestJUnitXMLWellFormed/report_with_special_charactersreport_with_special_char…TestParseAlerts_DataRaceAndPanic · introduced test · go.temporal.io/server/tools/testrunner/TestParseAlerts_DataRaceAndPanicTestParseAlerts_DataRace…Focused concept · junit.go ×3 · 13 introduced LOCjunit.go ×3

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

2 files ranked by introduced lines: 13 introduced LOC across 5 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

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

Open complete file

201 // dedupeAlerts removes duplicate alerts (e.g., repeated across retries) based
202 // on type and details while preserving the first-seen order.
203 > func dedupeAlerts(alerts []alert) []alert { junit.go
204 > seen := make(map[string]struct{}, len(alerts))
205 > var out []alert
206 > for _, a := range alerts {
207 > key := string(a.Type) + "\n" + a.Details
208 > if _, ok := seen[key]; ok {
209 continue
210 }
211 > seen[key] = struct{}{} junit.go
212 > out = append(out, a)
213 }
214 > return out junit.go
215 }
216
go.temporal.io/server/tools/testrunner/log.go 4 introduced LOC · 2 ranges

Open complete file

86 // 1) Fully-qualified test name containing ".Test"
87 // 2) First detected test name
88 > func primaryTestName(tests []string) string { log.go
89 > if len(tests) == 0 {
90 return ""
91 }
92 > for _, t := range tests { log.go
93 > if strings.Contains(t, ".Test") {
94 return t
95 }