WillReturnCollectionValuesOf cannot accept mock values?
Here's the production code
public class ListWrapper
{
public List<SimpleClass> lists
{
get; set;
}
}
public abstract class SimpleClass
{
public string ID
{
get;
set;
}
public string Node
{
get
{
throw new NotImplementedException();
}
}
}
Here's the test code
[Test, Isolated]
public void TestListWrapper()
{
ListWrapper lists = Isolate.Fake.Instance<ListWrapper>(Members.ReturnRecursiveFakes);
Isolate.WhenCalled(()=>lists.lists).WillReturnCollectionValuesOf(new List<SimpleClass>()
{
Isolate.Fake.Instance<SimpleClass>()
});
}
And the exception blows up at the WillReturnCOllectionValuesOf line, because of this exception:
failed: TypeMock.TypeMockException :
*** Cannot mock types from mscorlib assembly.
at TypeMock.MockManager.a(Type A_0, String A_1, Boolean A_2)
at TypeMock.MockManager.a(Type A_0, String A_1)
at TypeMock.MockManager.f(Type A_0)
at TypeMock.MockManager.Mock(Type type, Constructor mockConstructors)
at TypeMock.MockManager.MockObject(Type type, Constructor mockConstructors, Object[] args)
at TypeMock.MockManager.MockObject[TMockedType]()
at TypeMock.ArrangeActAssert.Recorder`1.a(IEnumerable A_0)
I think this is a bug, because the list should be mockable, there is nothing from mscorlib I afraid.
________
box vaporizer