Coverage Report

Created: 2025-09-08 06:20

/proc/self/cwd/cpp/htmlparser/parser_fuzz_test.cc
Line
Count
Source
1
#include "cpp/htmlparser/parser.h"
2
3
#include "fuzztest/fuzztest.h"
4
5
12.5k
void FuzzParser(std::string raw_html) {
6
12.5k
  htmlparser::Parser parser(raw_html);
7
12.5k
  parser.Parse();
8
12.5k
}
9
10
FUZZ_TEST(CC_FUZZING, FuzzParser);