Changed condition parameter names
This commit is contained in:
@@ -118,23 +118,23 @@ class RemoveXAmountTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$condition1 = new MatchForTotalAmount($stubFacade);
|
$condition1 = new MatchForTotalAmount($stubFacade);
|
||||||
$operators = array(
|
$operators = array(
|
||||||
MatchForTotalAmount::INPUT1 => Operators::SUPERIOR,
|
MatchForTotalAmount::CART_TOTAL => Operators::SUPERIOR,
|
||||||
MatchForTotalAmount::INPUT2 => Operators::EQUAL
|
MatchForTotalAmount::CART_CURRENCY => Operators::EQUAL
|
||||||
);
|
);
|
||||||
$values = array(
|
$values = array(
|
||||||
MatchForTotalAmount::INPUT1 => 40.00,
|
MatchForTotalAmount::CART_TOTAL => 40.00,
|
||||||
MatchForTotalAmount::INPUT2 => 'EUR'
|
MatchForTotalAmount::CART_CURRENCY => 'EUR'
|
||||||
);
|
);
|
||||||
$condition1->setValidatorsFromForm($operators, $values);
|
$condition1->setValidatorsFromForm($operators, $values);
|
||||||
|
|
||||||
$condition2 = new MatchForTotalAmount($stubFacade);
|
$condition2 = new MatchForTotalAmount($stubFacade);
|
||||||
$operators = array(
|
$operators = array(
|
||||||
MatchForTotalAmount::INPUT1 => Operators::INFERIOR,
|
MatchForTotalAmount::CART_TOTAL => Operators::INFERIOR,
|
||||||
MatchForTotalAmount::INPUT2 => Operators::EQUAL
|
MatchForTotalAmount::CART_CURRENCY => Operators::EQUAL
|
||||||
);
|
);
|
||||||
$values = array(
|
$values = array(
|
||||||
MatchForTotalAmount::INPUT1 => 400.00,
|
MatchForTotalAmount::CART_TOTAL => 400.00,
|
||||||
MatchForTotalAmount::INPUT2 => 'EUR'
|
MatchForTotalAmount::CART_CURRENCY => 'EUR'
|
||||||
);
|
);
|
||||||
$condition2->setValidatorsFromForm($operators, $values);
|
$condition2->setValidatorsFromForm($operators, $values);
|
||||||
|
|
||||||
|
|||||||
@@ -107,23 +107,23 @@ class RemoveXPercentTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$condition1 = new MatchForTotalAmount($stubFacade);
|
$condition1 = new MatchForTotalAmount($stubFacade);
|
||||||
$operators = array(
|
$operators = array(
|
||||||
MatchForTotalAmount::INPUT1 => Operators::SUPERIOR,
|
MatchForTotalAmount::CART_TOTAL => Operators::SUPERIOR,
|
||||||
MatchForTotalAmount::INPUT2 => Operators::EQUAL
|
MatchForTotalAmount::CART_CURRENCY => Operators::EQUAL
|
||||||
);
|
);
|
||||||
$values = array(
|
$values = array(
|
||||||
MatchForTotalAmount::INPUT1 => 40.00,
|
MatchForTotalAmount::CART_TOTAL => 40.00,
|
||||||
MatchForTotalAmount::INPUT2 => 'EUR'
|
MatchForTotalAmount::CART_CURRENCY => 'EUR'
|
||||||
);
|
);
|
||||||
$condition1->setValidatorsFromForm($operators, $values);
|
$condition1->setValidatorsFromForm($operators, $values);
|
||||||
|
|
||||||
$condition2 = new MatchForTotalAmount($stubFacade);
|
$condition2 = new MatchForTotalAmount($stubFacade);
|
||||||
$operators = array(
|
$operators = array(
|
||||||
MatchForTotalAmount::INPUT1 => Operators::INFERIOR,
|
MatchForTotalAmount::CART_TOTAL => Operators::INFERIOR,
|
||||||
MatchForTotalAmount::INPUT2 => Operators::EQUAL
|
MatchForTotalAmount::CART_CURRENCY => Operators::EQUAL
|
||||||
);
|
);
|
||||||
$values = array(
|
$values = array(
|
||||||
MatchForTotalAmount::INPUT1 => 400.00,
|
MatchForTotalAmount::CART_TOTAL => 400.00,
|
||||||
MatchForTotalAmount::INPUT2 => 'EUR'
|
MatchForTotalAmount::CART_CURRENCY => 'EUR'
|
||||||
);
|
);
|
||||||
$condition2->setValidatorsFromForm($operators, $values);
|
$condition2->setValidatorsFromForm($operators, $values);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user