2016-06-22 15:31:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Meta
|
|
|
|
* @package WooCommerce\Tests\CRUD
|
|
|
|
*/
|
|
|
|
class WC_Tests_CRUD_Refunds extends WC_Unit_Test_Case {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: get_type
|
|
|
|
*/
|
|
|
|
function test_get_type() {
|
|
|
|
$object = new WC_Order_Refund();
|
|
|
|
$this->assertEquals( 'shop_order_refund', $object->get_type() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: get_refund_amount
|
|
|
|
*/
|
|
|
|
function test_get_refund_amount() {
|
|
|
|
$object = new WC_Order_Refund();
|
2016-08-22 17:00:52 +00:00
|
|
|
$object->set_amount( 20 );
|
2016-08-22 12:04:57 +00:00
|
|
|
$this->assertEquals( '20.00', $object->get_amount() );
|
2016-06-22 15:31:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: get_refund_reason
|
|
|
|
*/
|
|
|
|
function test_get_refund_reason() {
|
|
|
|
$object = new WC_Order_Refund();
|
2016-08-22 17:00:52 +00:00
|
|
|
$object->set_reason( 'Customer is an idiot' );
|
2016-08-22 12:04:57 +00:00
|
|
|
$this->assertEquals( 'Customer is an idiot', $object->get_reason() );
|
2016-06-22 15:31:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test: get_refunded_by
|
|
|
|
*/
|
|
|
|
function test_get_refunded_by() {
|
|
|
|
$object = new WC_Order_Refund();
|
|
|
|
$object->set_refunded_by( 1 );
|
|
|
|
$this->assertEquals( 1, $object->get_refunded_by() );
|
|
|
|
}
|
|
|
|
}
|