mapnik/test/unit/numerics/enumeration.cpp

17 lines
459 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>
TEST_CASE("enumeration") {
2016-02-16 21:30:40 +01:00
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;
2016-02-16 21:30:40 +01:00
CHECK( s.str() == "round" );
}