// // 2002-2005 AlphaSierraPapa // GNU General Public License // // $Revision$ // using System; using System.Windows.Forms; using ICSharpCode.Core; using ICSharpCode.SharpDevelop; namespace ICSharpCode.NUnitPad { /// /// Description of RunTestsCommand /// public class RunTestsCommand : AbstractMenuCommand { /// /// Creates a new RunTestsCommand /// public RunTestsCommand() { } /// /// Starts the command /// public override void Run() { ((TestTreeView)Owner).RunTests(); } } /// /// Description of GotoDefinitionCommand /// public class GotoDefinitionCommand : AbstractMenuCommand { /// /// Creates a new GotoDefinitionCommand /// public GotoDefinitionCommand() { } /// /// Starts the command /// public override void Run() { ((TestTreeView)Owner).GotoDefinition(); } } }