mapnik/test/unit/numerics/enumeration.cpp

17 lines
426 B
C++
Raw Normal View History

#include "catch.hpp"
#include <mapnik/enumeration.hpp>
2016-02-16 21:30:40 +01:00
#include <mapnik/symbolizer_enumerations.hpp>
#include <sstream>
2022-01-26 23:25:53 +01:00
TEST_CASE("enumeration")
{
mapnik::line_cap_e e(mapnik::ROUND_CAP);
CHECK(e.as_string() == "round");
// note: test the << operator, which calls `as_string` internally
// is not used in mapnik, but kept for back compat
std::stringstream s;
s << e;
CHECK(s.str() == "round");
2017-05-05 13:02:01 +02:00
}