(t *testing.T)
| 52 | } |
| 53 | } |
| 54 | func TestParseParam(t *testing.T) { |
| 55 | _, err := ParseParams("bool:true") |
| 56 | |
| 57 | assert.Nil(t, err) |
| 58 | |
| 59 | } |
| 60 | |
| 61 | func TestParseParams(t *testing.T) { |
| 62 | testByteArray := []byte("HelloWorld") |
nothing calls this directly
no test coverage detected