(t *testing.T)
| 452 | } |
| 453 | |
| 454 | func TestBindingXML(t *testing.T) { |
| 455 | testBodyBinding(t, |
| 456 | XML, "xml", |
| 457 | "/", "/", |
| 458 | "<map><foo>bar</foo></map>", "<map><bar>foo</bar></map>") |
| 459 | } |
| 460 | |
| 461 | func TestBindingXMLFail(t *testing.T) { |
| 462 | testBodyBindingFail(t, |
nothing calls this directly
no test coverage detected