@Test
 public void testParse() {
   NotificationResponse nr = new NotificationResponse(responseString);
   assertEquals(IResponse.OK, nr.getStatus());
   assertEquals("1234", nr.getNotificationID());
   assertTrue(nr.isNotification());
 }