Some checks failed
DCO action / DCO (pull_request) Failing after 38s
Tests and linters / Tests (1.20) (pull_request) Successful in 42s
Tests and linters / Tests (1.19) (pull_request) Successful in 52s
Tests and linters / Lint (pull_request) Failing after 1m2s
Tests and linters / Tests with -race (pull_request) Successful in 1m11s
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)
|
|
})
|
|
}
|