コード例 #1
0
ファイル: APITest.php プロジェクト: revinate/sendwithus_php
 public function testDeleteCustomer()
 {
     $r = $this->api->create_customer($this->recipient['address']);
     $this->assertSuccess($r);
     $r = $this->api->delete_customer($this->recipient['address']);
     $this->assertSuccess($r);
     print 'Test delete customer';
 }