(t *testing.T)
| 1023 | } |
| 1024 | |
| 1025 | func TestDecodeBase64Output_Empty(t *testing.T) { |
| 1026 | decoded, err := DecodeBase64Output("") |
| 1027 | if err != nil { |
| 1028 | t.Fatalf("decode error: %v", err) |
| 1029 | } |
| 1030 | if len(decoded) != 0 { |
| 1031 | t.Errorf("expected empty, got %d bytes", len(decoded)) |
| 1032 | } |
| 1033 | } |
| 1034 | |
| 1035 | // =================================================================== |
| 1036 | // H. Line Number Stripping Tests |
nothing calls this directly
no test coverage detected