possible fix for payment builder
This commit is contained in:
parent
1e3a7cebb4
commit
e0e9710d12
1 changed files with 14 additions and 3 deletions
|
@ -19,6 +19,7 @@ class WC_Retailcrm_Order_Payment_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
parent::setUp();
|
||||
|
||||
$this->order = WC_Helper_Order::create_order();
|
||||
$this->setOptions();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -32,7 +33,12 @@ class WC_Retailcrm_Order_Payment_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
$data = $order_payment->build($this->order, $externalId)->get_data();
|
||||
|
||||
$this->assertArrayHasKey('externalId', $data);
|
||||
$this->assertNotEmpty($data);
|
||||
|
||||
if (!empty($externalId)) {
|
||||
$this->assertArrayHasKey('externalId', $data);
|
||||
}
|
||||
|
||||
$this->assertArrayHasKey('type', $data);
|
||||
$this->assertArrayNotHasKey('amount', $data);
|
||||
$this->assertArrayHasKey('order', $data);
|
||||
|
@ -51,8 +57,13 @@ class WC_Retailcrm_Order_Payment_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
$data = $order_payment->build($this->order, $externalId)->get_data();
|
||||
|
||||
$this->assertArrayHasKey('externalId', $data);
|
||||
$this->assertArrayHasKey('type', $data);
|
||||
$this->assertNotEmpty($data);
|
||||
|
||||
if (!empty($externalId)) {
|
||||
$this->assertArrayHasKey('externalId', $data);
|
||||
}
|
||||
|
||||
$this->assertArrayHasKey('type', $data);
|
||||
$this->assertArrayHasKey('amount', $data);
|
||||
$this->assertArrayHasKey('order', $data);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue