1 write to _control
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\SelectionUIHandlerTests.cs (1)
23
_control
= new();
6 references to _control
System.Windows.Forms.Design.Tests (6)
System\Windows\Forms\Design\SelectionUIHandlerTests.cs (6)
29
_selectionUIHandlerMock.Protected().Setup<Control>("GetControl").Returns(
_control
);
30
_selectionUIHandlerMock.Protected().Setup<Control>("GetControl", ItExpr.IsAny<IComponent>()).Returns(
_control
);
39
_control
.Dispose();
55
dragControls[0].Should().Be(
_control
);
167
_selectionUIHandlerMock.Setup(h => h.SetCursor()).Callback(() =>
_control
.Cursor = expectedCursor);
172
_control
.Cursor.Should().Be(expectedCursor);