mirror of
https://github.com/mapnik/mapnik.git
synced 2025-02-22 14:54:24 +01:00
13 lines
270 B
C++
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")
|