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