(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestCursorProvider_LogFileName(t *testing.T) { |
| 29 | p := NewCursorProvider("") |
| 30 | if p.LogFileName() != "cursor.log" { |
| 31 | t.Errorf("LogFileName() = %q, want cursor.log", p.LogFileName()) |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func TestCursorProvider_LoopCommand(t *testing.T) { |
| 36 | ctx := context.Background() |
nothing calls this directly
no test coverage detected