(t *testing.T)
| 338 | } |
| 339 | |
| 340 | func TestUsage(t *testing.T) { |
| 341 | t.Skip("prints usage string") |
| 342 | cfg := &TestConfig{} |
| 343 | us := usage(DefaultOptions("Test"), cfg, "") |
| 344 | fmt.Println(us) |
| 345 | } |
| 346 | |
| 347 | func TestSave(t *testing.T) { |
| 348 | // t.Skip("prints usage string") |
nothing calls this directly
no test coverage detected