32 lines
642 B
Go
32 lines
642 B
Go
|
//go:build gofuzz
|
||
|
// +build gofuzz
|
||
|
|
||
|
// Code generated by protoc-gen-go-frostfs. DO NOT EDIT.
|
||
|
|
||
|
package session
|
||
|
|
||
|
import (
|
||
|
testing "testing"
|
||
|
)
|
||
|
|
||
|
func FuzzProtoCreateRequest(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzProtoCreateRequest(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzJSONCreateRequest(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzJSONCreateRequest(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzProtoCreateResponse(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzProtoCreateResponse(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzJSONCreateResponse(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzJSONCreateResponse(data)
|
||
|
})
|
||
|
}
|