We have a testmethod.
We create a new RadViewGrid and add a customer:
[TestMethod]
public void OnEditExecuted_OpenDialogOK()
{
ViewMock.SetupProperty(v => v.Grid, new RadGridView());
ViewMock.Object.Grid.Items.Add(_customer[0]);
ViewMock.Object.Grid.SelectedItem = ViewMock.Object.Grid.Items[0];
At this moment, the SelectedItem is a customer. So, that's OK.
But..., the SelectedItemS.Count = 0 !
How is this possible?