package wopi import ( "fmt" "testing" ) func TestDiscoveryXmlToViewerGroup(t *testing.T) { xmlSrc := ` ` group, _ := DiscoveryXmlToViewerGroup(xmlSrc) fmt.Print(group) }