mapnik/benchmark/template.cpp
2022-01-27 00:12:13 +01:00

13 lines
270 B
C++

#include "bench_framework.hpp"
class test : public benchmark::test_case
{
public:
test(mapnik::parameters const& params)
: test_case(params)
{}
bool validate() const { return true; }
void operator()() const {}
};
BENCHMARK(test, "test name")