// 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 { /// /// Gets the selected member in the test tree view. /// TestMember SelectedMember {get;} /// /// Gets the selected class in the test tree view. /// TestClass SelectedClass {get;} /// /// Gets the selected project for the selected node /// in the test tree view. /// IProject SelectedProject {get;} /// /// Gets the namespace for the selected namespace node. /// string SelectedNamespace {get;} } }