1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

several fixes for tests

This commit is contained in:
Pavel 2020-04-09 11:35:11 +03:00
parent e0e9710d12
commit 617845d920
2 changed files with 5 additions and 1 deletions

View file

@ -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();

View file

@ -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');