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.
34 lines
894 B
34 lines
894 B
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
|
|
using ICSharpCode.NRefactory.TypeSystem; |
|
using ICSharpCode.SharpDevelop.Project; |
|
using System; |
|
|
|
namespace ICSharpCode.UnitTesting |
|
{ |
|
public interface ITestTreeView |
|
{ |
|
/// <summary> |
|
/// Gets the selected member in the test tree view. |
|
/// </summary> |
|
TestMember SelectedMember {get;} |
|
|
|
/// <summary> |
|
/// Gets the selected class in the test tree view. |
|
/// </summary> |
|
TestClass SelectedClass {get;} |
|
|
|
/// <summary> |
|
/// Gets the selected project for the selected node |
|
/// in the test tree view. |
|
/// </summary> |
|
IProject SelectedProject {get;} |
|
|
|
/// <summary> |
|
/// Gets the namespace for the selected namespace node. |
|
/// </summary> |
|
string SelectedNamespace {get;} |
|
} |
|
}
|
|
|