Coverage Report

Created: 2024-02-25 06:31

/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
945
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
8
945
  std::string path((const char *)data, size);
9
945
  google::grpc::transcoding::HttpTemplate::Parse(path);
10
945
  return 0;
11
945
}