package rrdformat import ( "encoding/xml" "testing" ) func TestXML(t *testing.T) { out, err := xml.Marshal(&Header{ Version: "0003", PDPStep: 300, }) t.Log(string(out), err) }