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