2021-03-12 12:57:23 +00:00
|
|
|
package accounting_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-03-07 10:38:56 +00:00
|
|
|
accountingtest "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/accounting/test"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message"
|
|
|
|
messagetest "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message/test"
|
2021-03-12 12:57:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMessage(t *testing.T) {
|
|
|
|
messagetest.TestRPCMessage(t,
|
|
|
|
func(empty bool) message.Message { return accountingtest.GenerateDecimal(empty) },
|
|
|
|
func(empty bool) message.Message { return accountingtest.GenerateBalanceRequestBody(empty) },
|
|
|
|
func(empty bool) message.Message { return accountingtest.GenerateBalanceRequest(empty) },
|
|
|
|
func(empty bool) message.Message { return accountingtest.GenerateBalanceResponseBody(empty) },
|
|
|
|
func(empty bool) message.Message { return accountingtest.GenerateBalanceResponse(empty) },
|
|
|
|
)
|
|
|
|
}
|