frostfs-sdk-go/version/test/generate.go

18 lines
257 B
Go

package versiontest
import (
"math/rand"
"github.com/nspcc-dev/neofs-sdk-go/version"
)
// Version returns random version.Version.
func Version() *version.Version {
x := version.New()
x.SetMajor(rand.Uint32())
x.SetMinor(rand.Uint32())
return x
}