I've a class that has a IEnumerable<object>
property:
interface ICore {
IEnumerable<object> enumerable { get; }
}
I need to substitute the return values of this IEnumerable<object>
. I've rtied with Returns
, nevertheless, I'm getting a message telling me it's not available on an IEnumerable
.
Any ideas?