// Copyright 2019 github.com. All rights reserved. // Use of this source code is governed by github.com. package tests import ( v1 "access-control-monitor/pb/v1" "testing" jsoniter "github.com/json-iterator/go" ) var json = jsoniter.ConfigCompatibleWithStandardLibrary func Test_HelloV1(t *testing.T) { hello := v1.HelloRequest{Name: "Jackson Wall"} s, _ := json.MarshalToString(hello) t.Log(s) }