Ejemplo n.º 1
0
 private void SetupActiveWordCompletionSession()
 {
     _activeWordCompletionSession = _factory.Create <IWordCompletionSession>(MockBehavior.Loose);
     _wordCompletionSessionFactoryService
     .Setup(x => x.CreateWordCompletionSession(_textView, It.IsAny <SnapshotSpan>(), It.IsAny <IEnumerable <string> >(), It.IsAny <bool>()))
     .Returns(_activeWordCompletionSession.Object);
     _modeRaw.StartWordCompletionSession(true);
 }