юнит-тесты
tests := []struct {
name string
req store.GetOrderByIDParams
code int
want string
}{
{
name: "good test",
req: store.GetOrderByIDParams{OrderID: 123},
code: 200,
want: `{"id":123,"petId":456,"quantity":20,"status":"approved"}`,
},
{
name: "bad test",
req: store.GetOrderByIDParams{OrderID: 456},
code: 404,
want: `{"message":"Not Found", "code":404}`,
},
}