public void CreateFakeWorkbench()
		{
			workbench = MockWorkbench.CreateWorkbenchWithOneViewContent("test.py");
			fakeConsoleTextEditor = workbench.FakeScriptingConsolePad.FakeConsoleTextEditor;
			fakeConsole = workbench.FakeScriptingConsolePad.FakeScriptingConsole;
			fakeTextEditor = workbench.ActiveMockEditableViewContent.MockTextEditor;
		}
		void CreatePythonCodeCompletionBinding()
		{
			fakeTextEditor = new MockTextEditor();
			codeCompletionBinding = new TestablePythonCodeCompletionBinding();			
		}
		void CreatePythonInsightWindowHandler()
		{
			fakeTextEditor = new MockTextEditor();
			fakeInsightWindow = new FakeInsightWindow();
			handler = new PythonInsightWindowHandler();
		}