(t *testing.T)
| 372 | } |
| 373 | |
| 374 | func TestRenderCreateTable_Nil(t *testing.T) { |
| 375 | var stmt *ast.CreateTableStatement |
| 376 | if fmtStmt(stmt, ast.CompactStyle()) != "" { |
| 377 | t.Error("nil should return empty string") |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | func TestRenderFormatWithTabs(t *testing.T) { |
| 382 | stmt := &ast.CreateTableStatement{ |
nothing calls this directly
no test coverage detected