* Factory method to easily instantiate a mock SMPPSession
*
* @return the SMPPSession
*/
SMPPSession createSMPPSession() {
return new SMPPSession(new SynchronizedPDUSender(new DefaultPDUSender(
new DefaultComposer())), new DefaultPDUReader(), SmppConnectionFactory
.getInstance(configuration));
}