We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3069706 + 56c0e48 commit 4a84b07Copy full SHA for 4a84b07
1 file changed
src/AddIns/Analysis/UnitTesting/Pad/UnitTestNode.cs
@@ -37,6 +37,10 @@ public UnitTestNode(ITest test)
37
if (test == null)
38
throw new ArgumentNullException("test");
39
this.test = test;
40
+ if (IsVisible) {
41
+ test.DisplayNameChanged += test_NameChanged;
42
+ test.ResultChanged += test_ResultChanged;
43
+ }
44
}
45
46
protected override void OnIsVisibleChanged()
0 commit comments