(t *testing.T)
| 110 | } |
| 111 | |
| 112 | func TestResolveCommand_CommandNotFound(t *testing.T) { |
| 113 | t.Parallel() |
| 114 | |
| 115 | rt := &mockRuntime{ |
| 116 | commands: types.Commands{}, |
| 117 | } |
| 118 | |
| 119 | result := ResolveCommand(t.Context(), rt, "/unknown") |
| 120 | assert.Equal(t, "/unknown", result) |
| 121 | } |
| 122 | |
| 123 | func TestResolveCommand_NotACommand(t *testing.T) { |
| 124 | t.Parallel() |
nothing calls this directly
no test coverage detected