#include <stdint.h>
#include <tuple>
#include "base/time/time.h"
#include "components/attribution_reporting/filters.h"
#include "components/attribution_reporting/fuzz_utils.h"
#include "components/attribution_reporting/source_type.mojom-forward.h"
#include "components/attribution_reporting/test_utils.h"
#include "third_party/fuzztest/src/fuzztest/fuzztest.h"
namespace attribution_reporting {
namespace {
fuzztest::Domain<base::Time> AnyTime() { … }
void Matches(const FilterData& filter_data,
const mojom::SourceType source_type,
const base::Time source_time,
const base::Time trigger_time,
const FilterPair& filter_pair) { … }
FUZZ_TEST(…);
}
}