/** Test RDS return alert */ @Test public void testRDSCoderErrorAlert() { try { throw new Exception("test RDS coder error"); } catch (Exception e) { service.sendRDSCoderErrorAlert(e); } }
/** Test webservice communication alert */ @Test public void testWebserviceCommunicationErrorAlert() { try { throw new Exception("test webservice communication error error"); } catch (Exception e) { service.sendWebserviceCommunicationErrorAlert(e); } }
/** Test COM port error alert */ @Test public void testCOMPortErrorAlert() { try { throw new Exception("test COM port error"); } catch (Exception e) { service.sendCOMPortErrorAlert(e); } }