Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 3e6ad09

Browse files
committed
Allow recursively expanding the unit test treeview using '*'.
1 parent ec141ba commit 3e6ad09

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/AddIns/Analysis/UnitTesting/Model/ITest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public interface ITest
5454
string DisplayName { get; }
5555

5656
/// <summary>
57-
/// Raised when the <see cref="Name"/> property changes.
57+
/// Raised when the <see cref="DisplayName"/> property changes.
5858
/// </summary>
5959
event EventHandler DisplayNameChanged;
6060

src/AddIns/Analysis/UnitTesting/Pad/UnitTestNode.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ public override void ActivateItem(RoutedEventArgs e)
8484
public override bool ShowExpander {
8585
get { return test.CanExpandNestedTests && base.ShowExpander; }
8686
}
87+
88+
public override bool CanExpandRecursively {
89+
get { return true; }
90+
}
8791
#endregion
8892

8993
#region Icon + Text

0 commit comments

Comments
 (0)