2022-04-11 16:25:14 +00:00
|
|
|
/*
|
|
|
|
Package oidtest provides functions for convenient testing of oid package API.
|
|
|
|
|
|
|
|
Note that importing the package into source files is highly discouraged.
|
|
|
|
|
|
|
|
Random instance generation functions can be useful when testing expects any value, e.g.:
|
2022-08-24 14:17:40 +00:00
|
|
|
|
2022-04-11 16:25:14 +00:00
|
|
|
import oidtest "github.com/nspcc-dev/neofs-sdk-go/object/id/test"
|
|
|
|
|
2022-05-25 09:03:22 +00:00
|
|
|
value := oidtest.ID()
|
2022-04-11 16:25:14 +00:00
|
|
|
// test the value
|
|
|
|
*/
|
|
|
|
package oidtest
|