mapnik/test/unit/core
Mickey Rose d38d16ade9 better tests for logical expressions
Two of the original checks were not testing what they were supposed to
test, because the result of eval didn't depend on correct parsing:

    eval("not true or not true")
    correct parse:      ((not true) or (not true)) == false
    incorrect parse:    (not (true or (not true))) == false

    eval("not false and not false")
    correct parse:      ((not false) and (not false)) == true
    incorrect parse:    (not (false and (not false))) == true
2020-01-02 17:30:24 +01:00
..
box2d_test.cpp move box2.hpp and related files into geometry dir 2017-01-26 09:51:37 +01:00
comparison_test.cpp refactor value related objects into include/value dir 2016-10-11 18:01:30 +02:00
conversions_test.cpp update test to use std::unordered_map<mapnik::value, mapnik::value> 2016-12-13 17:03:09 +01:00
copy_move_test.cpp update copyright year 2017-05-05 13:02:01 +02:00
exceptions_test.cpp minor unit test cleanups to prepare to test amalgamation 2016-03-03 10:53:58 -08:00
expressions_test.cpp better tests for logical expressions 2020-01-02 17:30:24 +01:00
params_test.cpp refactor value related objects into include/value dir 2016-10-11 18:01:30 +02:00
transform_expressions_test.cpp move transform related headers into transform dir to minimize clutter 2017-01-11 11:10:03 +01:00
value_test.cpp refactor value related objects into include/value dir 2016-10-11 18:01:30 +02:00