several fixes for tests
This commit is contained in:
parent
e0e9710d12
commit
617845d920
2 changed files with 5 additions and 1 deletions
|
@ -29,7 +29,9 @@ class WC_Retailcrm_Order_Payment_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
*/
|
||||
public function test_build($externalId)
|
||||
{
|
||||
$order_payment = new WC_Retailcrm_Order_Payment($this->getOptions());
|
||||
$settings = $this->getOptions();
|
||||
$settings['send_payment_amount'] = 'no';
|
||||
$order_payment = new WC_Retailcrm_Order_Payment($settings);
|
||||
|
||||
$data = $order_payment->build($this->order, $externalId)->get_data();
|
||||
|
||||
|
|
|
@ -38,6 +38,8 @@ class WC_Retailcrm_Customers_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
->willReturn($this->responseMock);
|
||||
|
||||
$this->customer = new WC_Customer();
|
||||
$this->customer->set_first_name('Tester');
|
||||
$this->customer->set_last_name('Tester');
|
||||
$this->customer->set_email(uniqid(md5(date('Y-m-d H:i:s'))) . '@mail.com');
|
||||
$this->customer->set_billing_email($this->customer->get_email());
|
||||
$this->customer->set_password('password');
|
||||
|
|
Loading…
Add table
Reference in a new issue