I am receiving the following error message when attempting to mock a DataContext object.
*** Cannot return a value for DB.get_Tabs() because no value was set. use recorder.Return().
I saw a previous forum post (
https://www.typemock.com/community/viewtopic.php?t=727) which mentioned an issue such as this, but it was reported to have been fixed in 4.3. I am currently using 5.3.1.
Here is the offending code.
var tabs = new Tab[1];
var roles = new string[] { "PageEditor" };
using (var r = new RecordExpectations())
{
var db = new DB();
r.ExpectAndReturn(Roles.GetRolesForUser(), roles);
r.ExpectAndReturn(db.Tabs.Where(x => roles.Contains(x.Role)).ToArray(),
tabs).RepeatAlways().WhenArgumentsMatch();
}
The LINQ expression is causing the issue, because if I dummy down the query, it works fine....
var tabs = new Tab[1];
var roles = new string[] { "PageEditor" };
using (var r = new RecordExpectations())
{
var db = new DB();
r.ExpectAndReturn(Roles.GetRolesForUser(), roles);
r.ExpectAndReturn(db.Tabs.Where(x => x.Role == "").ToArray(),
tabs).RepeatAlways().WhenArgumentsMatch();
}
Is there a different way I should be handling this from a mocking perspective, or is this an issue within Isolator?
Thanks,
Jamison