(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func TestShortCommand(t *testing.T) { |
| 21 | for i, tst := range shortCommandTests { |
| 22 | result := shortCommand(tst.command) |
| 23 | if result != tst.expected { |
| 24 | t.Errorf("Test %d: expected\n%q\ngot\n%q", i, tst.expected, result) |
| 25 | } |
| 26 | } |
| 27 | } |
nothing calls this directly
no test coverage detected