(t *testing.T)
| 2044 | } |
| 2045 | |
| 2046 | func TestBuildHeaderDisplay_Integration(t *testing.T) { |
| 2047 | // Test that buildHeaderDisplay creates correct format when used with String() |
| 2048 | timestamp := time.Date(2024, 3, 20, 14, 25, 30, 0, time.UTC) |
| 2049 | header := buildHeaderDisplay(timestamp) |
| 2050 | output := header.String() |
| 2051 | |
| 2052 | expected := "=== VALIDATE VSA RESULT — 2024-03-20T14:25:30Z ===\n" |
| 2053 | assert.Equal(t, expected, output) |
| 2054 | } |
| 2055 | |
| 2056 | func TestBuildResultDisplay(t *testing.T) { |
| 2057 | tests := []struct { |
nothing calls this directly
no test coverage detected