统一初始beego mvc 的方法
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

15 satır
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. }