(t *testing.T)
| 169 | } |
| 170 | |
| 171 | func TestFormatFieldValue_InvalidValue(t *testing.T) { |
| 172 | // Test invalid reflect.Value |
| 173 | var val reflect.Value |
| 174 | result := formatFieldValue(val) |
| 175 | if result != "-" { |
| 176 | t.Errorf("invalid value: got %q, want %q", result, "-") |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | func TestFormatFieldValueWithTag_NumberFormat(t *testing.T) { |
| 181 | tests := []struct { |
nothing calls this directly
no test coverage detected