MCPcopy Create free account
hub / github.com/Samsung/UTopia / create

Method create

lib/generation/Fuzzer.cpp:5–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3namespace ftg {
4
5std::shared_ptr<Fuzzer> Fuzzer::create(const Unittest &UT,
6 const InputAnalysisReport &InputReport) {
7 auto Result = std::make_shared<Fuzzer>(UT);
8 if (!Result)
9 return Result;
10
11 Result->prepareFuzzInputs(InputReport);
12 return Result;
13}
14
15Fuzzer::Fuzzer(const Unittest &UT) : Name(UT.getID()), UT(&UT) {}
16

Callers

nothing calls this directly

Calls 1

prepareFuzzInputsMethod · 0.80

Tested by

no test coverage detected