(t *testing.T)
| 52 | } |
| 53 | |
| 54 | func TestFormatString(t *testing.T) { |
| 55 | result, err := FormatString("SELECT 1") |
| 56 | if err != nil { |
| 57 | t.Fatalf("FormatString() error = %v", err) |
| 58 | } |
| 59 | if result == "" { |
| 60 | t.Error("FormatString() returned empty") |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | func TestNew_DefaultIndent(t *testing.T) { |
| 65 | f := New(Options{}) |
nothing calls this directly
no test coverage detected