Files
comaps/libs/search/search_quality/search_quality_tests/benchmark_tests.cpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

21 lines
462 B
C++

#include "testing/testing.hpp"
#include "search/search_tests_support/helpers.hpp"
namespace benchmark_tests
{
using BenchmarkFixture = search::tests_support::SearchTest;
UNIT_CLASS_TEST(BenchmarkFixture, Smoke)
{
RegisterLocalMapsInViewport(mercator::Bounds::FullRect());
SetViewport({50.1052, 8.6868}, 10000); // Frankfurt am Main
auto request = MakeRequest("b");
LOG(LINFO, (request->ResponseTime().count()));
}
} // namespace benchmark_tests