Re-compile NeoFS API proto files using updated script

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-11-17 12:35:56 +03:00 committed by Alex Vanin
parent 180da74e5c
commit 0f09f0dfc6
33 changed files with 2694 additions and 2707 deletions

16
status/message_test.go Normal file
View file

@ -0,0 +1,16 @@
package status_test
import (
"testing"
"github.com/nspcc-dev/neofs-api-go/v2/rpc/message"
messagetest "github.com/nspcc-dev/neofs-api-go/v2/rpc/message/test"
statustest "github.com/nspcc-dev/neofs-api-go/v2/status/test"
)
func TestMessageConvert(t *testing.T) {
messagetest.TestRPCMessage(t,
func(empty bool) message.Message { return statustest.Detail(empty) },
func(empty bool) message.Message { return statustest.Status(empty) },
)
}