2020-07-10 10:51:40 +08:00
|
|
|
package response
|
|
|
|
|
|
|
|
import (
|
2021-08-03 15:58:35 +08:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2020-07-10 10:51:40 +08:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2021-08-03 15:58:35 +08:00
|
|
|
type A struct {
|
|
|
|
Code int `json:"ret"`
|
|
|
|
Json
|
|
|
|
}
|
|
|
|
|
|
|
|
func (j *A) String() string {
|
|
|
|
s, _ := j.ToString()
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *A) ToString() (str string, err error) {
|
|
|
|
var b []byte
|
|
|
|
b, err = json.Marshal(a)
|
|
|
|
return bytes.NewBuffer(b).String(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *A) SetCode(code int) {
|
|
|
|
a.Code = code
|
|
|
|
}
|
|
|
|
|
2020-07-10 10:51:40 +08:00
|
|
|
func TestNewJsonByDefaultSuccess(t *testing.T) {
|
2021-08-03 15:58:35 +08:00
|
|
|
fmt.Println(NewJsonByDefaultSuccess())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestName(t *testing.T) {
|
|
|
|
resp := JsonResponseGenerator{&A{Code: 232}}
|
|
|
|
fmt.Println(fmt.Sprintf("%+v", resp.NewJonsByFailed(123232, "hahah")))
|
2020-07-10 10:51:40 +08:00
|
|
|
}
|