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