use of jetbrains.communicator.ide.SendCodePointerEvent in project intellij-plugins by JetBrains.
the class IDEAFacadeTest method testCreateLocalMessage_OutgoingCodePointer.
public void testCreateLocalMessage_OutgoingCodePointer() throws Exception {
SendCodePointerEvent event = new SendCodePointerEvent("message", VFile.create("a path"), new CodePointer(3, 4), myUser);
LocalMessage outgoingEvent = myFacade.createLocalMessageForOutgoingEvent(event);
assertTrue(outgoingEvent instanceof OutgoingCodePointerLocalMessage);
}
Aggregations