public UnitTestMarker (ExtensibleTextEditor textEditor, UnitTestMarkerHost host, UnitTestLocation unitTest)
		{
			if (textEditor == null)
				throw new ArgumentNullException ("textEditor");
			if (host == null)
				throw new ArgumentNullException ("host");
			this.textEditor = textEditor;
			this.host = host;
			this.unitTest = unitTest;
		}
		IUnitTestMarker ITextMarkerFactory.CreateUnitTestMarker (MonoDevelop.Ide.Editor.TextEditor editor, UnitTestMarkerHost host, UnitTestLocation unitTestLocation)
		{
			return new UnitTestMarker (TextEditor, host, unitTestLocation);
		}
Exemple #3
0
 public static IUnitTestMarker CreateUnitTestMarker(TextEditor editor, UnitTestMarkerHost host, UnitTestLocation unitTestLocation)
 {
     return(editor.TextMarkerFactory.CreateUnitTestMarker(editor, host, unitTestLocation));
 }
		public static IUnitTestMarker CreateUnitTestMarker (TextEditor editor, UnitTestMarkerHost host, UnitTestLocation unitTestLocation)
		{
			return editor.TextMarkerFactory.CreateUnitTestMarker (editor, host, unitTestLocation);
		}