forked from TrueCloudLab/frostfs-api-go
32 lines
653 B
Go
32 lines
653 B
Go
|
//go:build gofuzz
|
||
|
// +build gofuzz
|
||
|
|
||
|
// Code generated by protoc-gen-go-frostfs. DO NOT EDIT.
|
||
|
|
||
|
package accounting
|
||
|
|
||
|
import (
|
||
|
testing "testing"
|
||
|
)
|
||
|
|
||
|
func FuzzProtoBalanceRequest(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzProtoBalanceRequest(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzJSONBalanceRequest(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzJSONBalanceRequest(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzProtoBalanceResponse(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzProtoBalanceResponse(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzJSONBalanceResponse(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzJSONBalanceResponse(data)
|
||
|
})
|
||
|
}
|