beegoinit/response/xml_test.go

15 lines
190 B
Go
Raw Normal View History

package response
import (
"fmt"
"testing"
)
type XmlResponse struct {
Xml
}
func TestNewXmlByDefaultSuccess(t *testing.T) {
fmt.Println(&XmlResponse{Xml: NewXmlByDefaultSuccess()})
}