(s string)
| 33 | ) |
| 34 | |
| 35 | func boolString(s string) string { |
| 36 | if s == "0" { |
| 37 | return "false" |
| 38 | } |
| 39 | return "true" |
| 40 | } |
| 41 | |
| 42 | func TestEverything(t *testing.T) { |
| 43 | m := make(map[string]*Flag) |
no outgoing calls
no test coverage detected
searching dependent graphs…