forked from TrueCloudLab/frostfs-api-go
0f09f0dfc6
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
16 lines
449 B
Go
16 lines
449 B
Go
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) },
|
|
)
|
|
}
|