Ejemplo n.º 1
0
 public void ShouldNotFilterNonClosingWindowEvents()
 {
     ProcessorAssert.DoesNotFilter(_uut, new WindowEvent {
         Action = WindowAction.Activate
     });
 }
Ejemplo n.º 2
0
 public void ShouldNotFilterNonClosingDocumentEvents()
 {
     ProcessorAssert.DoesNotFilter(_uut, new DocumentEvent {
         Action = DocumentAction.Opened
     });
 }
Ejemplo n.º 3
0
 public void ShouldNotFilterOtherEvents()
 {
     ProcessorAssert.DoesNotFilter(_uut, new TestIDEEvent());
 }
 public void ShouldNotFilterAddNewItemCommandEvent(string commandId)
 {
     ProcessorAssert.DoesNotFilter(_uut, new CommandEvent {
         CommandId = commandId
     });
 }
 public void ShouldNotFilterAnyDocumentEvents()
 {
     ProcessorAssert.DoesNotFilter(_uut, new DocumentEvent());
 }
 public void ShouldNotFilterAnySolutionEvents()
 {
     ProcessorAssert.DoesNotFilter(_uut, new SolutionEvent());
 }