Coverage Report

Created: 2023-09-25 07:05

/proc/self/cwd/test/http_template_fuzz_test.cc
Line
Count
Source
1
#include "grpc_transcoding/http_template.h"
2
3
#include <cstddef>
4
#include <cstdint>
5
#include <string>
6
7
927
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
8
927
  std::string path((const char *)data, size);
9
927
  google::grpc::transcoding::HttpTemplate::Parse(path);
10
927
  return 0;
11
927
}