(value string)
| 182 | } |
| 183 | |
| 184 | func IsChecked(value string) (bool, string, string) { |
| 185 | if value != "true" { |
| 186 | return false, value, "must be checked" |
| 187 | } |
| 188 | |
| 189 | return true, value, "" |
| 190 | } |
nothing calls this directly
no outgoing calls
no test coverage detected