统一初始beego mvc 的方法
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
190 B

  1. package response
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. type XmlResponse struct {
  7. Xml
  8. }
  9. func TestNewXmlByDefaultSuccess(t *testing.T) {
  10. fmt.Println(&XmlResponse{Xml: NewXmlByDefaultSuccess()})
  11. }