(t *testing.T)
| 101 | } |
| 102 | |
| 103 | func TestNoArgument(t *testing.T) { |
| 104 | if GetCommandLine().Parse([]string{}) != nil { |
| 105 | t.Error("parse failed for empty argument list") |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | func TestUsage(t *testing.T) { |
| 110 | called := false |
nothing calls this directly
no test coverage detected