2022-03-12 16:15:26 +00:00
|
|
|
/*
|
|
|
|
Package accountingtest provides functions for convenient testing of accounting 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
|
|
|
|
2023-03-07 11:20:03 +00:00
|
|
|
import accountingtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/accounting/test"
|
2022-03-12 16:15:26 +00:00
|
|
|
|
|
|
|
dec := accountingtest.Decimal()
|
|
|
|
// test the value
|
|
|
|
*/
|
|
|
|
package accountingtest
|