mapnik/benchmark/template.cpp

14 lines
270 B
C++
Raw Normal View History

#include "bench_framework.hpp"
class test : public benchmark::test_case
{
2022-01-26 23:32:21 +01:00
public:
test(mapnik::parameters const& params)
2022-01-26 23:32:21 +01:00
: test_case(params)
{}
bool validate() const { return true; }
void operator()() const {}
};
2022-01-26 23:32:21 +01:00
BENCHMARK(test, "test name")