//assertEquals(0, submitSm.getSequenceNumber());
}
@Test
public void createSmppMessageFromAlertNotificationShouldReturnASmppMessage() {
AlertNotification alertNotification = new AlertNotification();
alertNotification.setCommandId(1);
alertNotification.setSequenceNumber(1);
alertNotification.setSourceAddr("1616");
alertNotification.setSourceAddrNpi(NumberingPlanIndicator.NATIONAL.value());
alertNotification.setSourceAddrTon(TypeOfNumber.NATIONAL.value());
alertNotification.setEsmeAddr("1717");
alertNotification.setEsmeAddrNpi(NumberingPlanIndicator.NATIONAL.value());
alertNotification.setEsmeAddrTon(TypeOfNumber.NATIONAL.value());
SmppMessage smppMessage = binding.createSmppMessage(alertNotification);
assertNull(smppMessage.getBody());
assertEquals(10, smppMessage.getHeaders().size());
assertEquals(1, smppMessage.getHeader(SmppBinding.SEQUENCE_NUMBER));