mapnik/test/unit/core
Mickey Rose 78756a9056 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

(cherry picked from commit d38d16ade9)
2020-01-02 19:32:12 +01:00
..
box2d_test.cpp minor unit test cleanups to prepare to test amalgamation 2016-03-03 10:53:58 -08:00
comparison_test.cpp minor unit test cleanups to prepare to test amalgamation 2016-03-03 10:53:58 -08:00
conversions_test.cpp update test to use std::unordered_map<mapnik::value, mapnik::value> 2016-12-14 18:24:29 -08:00
copy_move_test.cpp more test include gardening 2015-10-29 08:35:45 -07: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 19:32:12 +01:00
params_test.cpp minor unit test cleanups to prepare to test amalgamation 2016-03-03 10:53:58 -08:00
value_test.cpp minor unit test cleanups to prepare to test amalgamation 2016-03-03 10:53:58 -08:00