public void Test_PayIns_Get_PayPal()
        {
            try
            {
                PayInDTO       payIn  = null;
                WalletDTO      wallet = TestHelper.GetJohnsWallet();
                UserNaturalDTO user   = TestHelper.GetJohn();

                PayInPayPalPostDTO payInPost = new PayInPayPalPostDTO(user.Id, new Money {
                    Amount = 1000, Currency = CurrencyIso.EUR
                }, new Money {
                    Amount = 0, Currency = CurrencyIso.EUR
                }, wallet.Id, "http://test/test");

                payIn = _objectToTest.CreatePayPal(payInPost).Result;

                Assert.True(payIn.Id.Length > 0);
                Assert.True(payIn.PaymentType == PayInPaymentType.PAYPAL);
                Assert.True(payIn.ExecutionType == PayInExecutionType.WEB);

                PayInPayPalDTO getPayIn = _objectToTest.GetPayPal(payIn.Id).Result;

                Assert.NotNull(getPayIn);
                Assert.True(getPayIn.Id == payIn.Id);
            }
            catch (Exception ex)
            {
                Assert.True(false, ex.Message);
            }
        }