Package org.eclipse.ecf.filetransfer.events.socket

Examples of org.eclipse.ecf.filetransfer.events.socket.ISocketClosedEvent


      Assert.assertTrue(socketEvents.size() > 0);
      socketEvent = (ISocketEvent) socketEvents.remove(0);
      Assert.assertTrue(socketEvent.toString(),
          socketEvent instanceof ISocketClosedEvent);
      ISocketClosedEvent closedEvent = (ISocketClosedEvent) socketEvent;
      Assert.assertSame(source, closedEvent.getSource());
      Assert.assertTrue(createdEvent.isSameFactorySocket(closedEvent));

      Assert.assertEquals(0, socketEvents.size());
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.filetransfer.events.socket.ISocketClosedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.