This commit is contained in:
李子铭 2024-08-23 14:08:58 +08:00
parent d3bbcc6e72
commit 0c7aeececa
1 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,14 @@ func config() []byte {
return marshal
}
func TestConfig(t *testing.T) {
t.Run("TestConfig", func(t *testing.T) {
c := config()
fmt.Printf("%+s\n", string(c))
assert.NotEmpty(t, c)
})
}
func TestOrder(t *testing.T) {
request := &proto.OrderRequest{
Config: config(),