Example #1
0
 /**
  * @return void
  */
 public function testDeleteAddressException()
 {
     $addressTransfer = new AddressTransfer();
     $this->expectException(CustomerNotFoundException::class);
     $this->expectExceptionMessage('Customer not found for email `` or ID ``.');
     $this->address->deleteAddress($addressTransfer);
 }