Evgenii Stratonikov
7f903df1e1
Some checks failed
Tests and linters / Tests (1.19) (pull_request) Successful in 17m39s
DCO action / DCO (pull_request) Failing after 17m51s
Tests and linters / Tests (1.20) (pull_request) Successful in 17m52s
Tests and linters / Tests with -race (pull_request) Successful in 18m17s
Tests and linters / Lint (pull_request) Failing after 22m20s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
31 lines
642 B
Go
31 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)
|
|
})
|
|
}
|