Hi,
Lets put a little code to see what is happening.
Add a small assert that will fail if _c.Items is null.
public object GetItems(object[] parameters, object context)
{
Assert.IsNotNull(_c.Items,"Woops, _c.Items is null");
return _c.Items;
}
You can also check what happens if you return a new LineItemCollection as follows:
LineItemCollection retCollection = new LineItemCollection();
retCollection.Add(...);
mock.ExpectGetAlways("Items",retCollection);