2016-03-03 19:53:58 +01:00
|
|
|
|
2016-02-09 19:08:29 +01:00
|
|
|
#include "catch.hpp"
|
|
|
|
#include <mapnik/enumeration.hpp>
|
2016-02-16 21:30:40 +01:00
|
|
|
#include <mapnik/symbolizer_enumerations.hpp>
|
2016-02-09 19:08:29 +01:00
|
|
|
#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
|
|
|
}
|