summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
6c87c37)
function for the equal and cheper check in the
testobject::text<9>() function.
td.tariffConf.fee = 50;
TARIFF_IMPL cheaper(td);
td.tariffConf.fee = 50;
TARIFF_IMPL cheaper(td);
- ensure_equals("Prohibit cheaper", !tariff.TariffChangeIsAllowed(cheaper).empty(), true);
+ ensure_equals("Prohibit cheaper", tariff.TariffChangeIsAllowed(cheaper).empty(), false);
td.tariffConf.fee = 100;
TARIFF_IMPL equal(td);
td.tariffConf.fee = 100;
TARIFF_IMPL equal(td);
- ensure_equals("Prohibit equal", !tariff.TariffChangeIsAllowed(equal).empty(), true);
+ ensure_equals("Prohibit equal", tariff.TariffChangeIsAllowed(equal).empty(), false);
td.tariffConf.fee = 150;
TARIFF_IMPL expensive(td);
td.tariffConf.fee = 150;
TARIFF_IMPL expensive(td);