| 12345678910111213141516171819202122232425262728293031323334 |
- package com.zipcoder.payment;
-
- import org.junit.Assert;
- import org.junit.Test;
-
- public class PaymentPresenterTest {
-
- // @Test
- // public void toStringEmptyTest() {
- // Payment[] payments = new Payment[0];
- // PaymentPresenter presenter = new PaymentPresenter();
- // String expected = "";
- //
- // String actual = presenter.toString(payments);
- //
- // Assert.assertEquals(expected, actual);
- // }
- // @Test
- // public void toStringTest() {
- // Payment[] payments = new Payment[2];
- // Payment paypal = new PayPal(4L, "Tia Mowry", "tia@mowry.com");
- // Payment check = new Check(81L, "Tia Mowry", "11432543", "134344551")
- //
- // payments[0] = paypal;
- // payments[1] = check;
- //
- // PaymentPresenter presenter = new PaymentPresenter();
- // String expected = "Check Tia Mowry ***4551\nPaypal Tia Mowry tia@mowry.com\n";
- //
- // String actual = presenter.toString(payments);
- // Assert.assertEquals(expected, actual);
- // }
- }
|