@SmallTest public void testSetPendingData() { try { emailAttribute.setPendingData("blob"); } catch (Exception e) { Assert.fail(); } }
@SmallTest public void testGetPendingData() { String data = "blob"; try { emailAttribute.setPendingData(data); Assert.assertEquals(data, emailAttribute.getPendingData()); } catch (Exception e) { Assert.fail(); } }