(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestCursorProvider_Name(t *testing.T) { |
| 11 | p := NewCursorProvider("") |
| 12 | if p.Name() != "Cursor" { |
| 13 | t.Errorf("Name() = %q, want Cursor", p.Name()) |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func TestCursorProvider_CLIPath(t *testing.T) { |
| 18 | p := NewCursorProvider("") |
nothing calls this directly
no test coverage detected