#include "say_hello.hpp"
#include <string_view>
#include <benchmark/benchmark.h>
void HelloBenchmark(benchmark::State& state) {
for (auto _ : state) {
auto result = samples::hello::SayHelloTo("userver");
benchmark::DoNotOptimize(result);
}
});
}
BENCHMARK(HelloBenchmark);