set_payment_method_title() public method

Set payment_method_title.
public set_payment_method_title ( string $value )
$value string
Example #1
0
 /**
  * Test: get_payment_method_title
  */
 function test_get_payment_method_title()
 {
     $object = new WC_Order();
     $set_to = 'PayPal';
     $object->set_payment_method_title($set_to);
     $this->assertEquals($set_to, $object->get_payment_method_title());
 }