public InteractiveWindowHistoryTests()
 {
     _testHost = new InteractiveWindowTestHost();
     _window = _testHost.Window;
     _operations = _window.Operations;
 }
예제 #2
0
 internal static void Copy(this IInteractiveWindowOperations operations)
 {
     ((IInteractiveWindowOperations2)operations).Copy();
 }
예제 #3
0
 internal static void CutLine(this IInteractiveWindowOperations operations)
 {
     ((IInteractiveWindowOperations2)operations).CutLine();
 }
예제 #4
0
 internal static void TypeChar(this IInteractiveWindowOperations operations, char typedChar)
 {
     ((IInteractiveWindowOperations2)operations).TypeChar(typedChar);
 }
예제 #5
0
 internal static void DeleteLine(this IInteractiveWindowOperations operations)
 {
     ((IInteractiveWindowOperations2)operations).DeleteLine();
 }