query_set_components_test.go
284 字节
package domain
import (
"github.com/google/gofuzz"
"github.com/linmadan/egglib-go/utils/json"
"log"
"testing"
)
func TestMockComponents(t *testing.T) {
f := fuzz.New()
var components QueryComponent
f.Fuzz(&components)
d := json.MarshalToString(components)
log.Println(d)
}