You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright> |
|
// <license see="prj:///doc/license.txt">GNU General Public License</license> |
|
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using System.Windows.Forms; |
|
|
|
using ICSharpCode.Core; |
|
using ICSharpCode.SharpDevelop; |
|
|
|
namespace ICSharpCode.NUnitPad |
|
{ |
|
/// <summary> |
|
/// Description of RunTestsCommand |
|
/// </summary> |
|
public class RunTestsCommand : AbstractMenuCommand |
|
{ |
|
/// <summary> |
|
/// Creates a new RunTestsCommand |
|
/// </summary> |
|
public RunTestsCommand() |
|
{ |
|
} |
|
|
|
/// <summary> |
|
/// Starts the command |
|
/// </summary> |
|
public override void Run() |
|
{ |
|
((TestTreeView)Owner).RunTests(); |
|
} |
|
} |
|
/// <summary> |
|
/// Description of GotoDefinitionCommand |
|
/// </summary> |
|
public class GotoDefinitionCommand : AbstractMenuCommand |
|
{ |
|
/// <summary> |
|
/// Creates a new GotoDefinitionCommand |
|
/// </summary> |
|
public GotoDefinitionCommand() |
|
{ |
|
} |
|
|
|
/// <summary> |
|
/// Starts the command |
|
/// </summary> |
|
public override void Run() |
|
{ |
|
((TestTreeView)Owner).GotoDefinition(); |
|
} |
|
} |
|
}
|
|
|