System.NotSupportedException:不支持的表达式:p => (p.UserProfileId == 1)

时间:2012-07-16 10:10:47

标签: c# asp.net-mvc-3 unit-testing moq

我有一个使用System.Func表达式的测试。它应该非常简单,但测试仍然失败。

测试:

  [TestMethod]
  public void GetUser()
  {
    var username = "john@resilientplc.com";
    var user = new User() { UserId = 1, Username = username, Password = "123456789" };

    someDataMock.Setup(s => s.GetUser(p => p.UserId == 1)).Returns(user);

    var result = userProfileModel.GetUser(user.UserId);
    Assert.AreEqual(user, result);
  }

实施 UserProfileModel

public User GetUser(long userId)
{
  return someDataMock.GetUser(u => u.UserId == UserId);
}

错误:

  

System.NotSupportedException:不支持的表达式:p =>   (p.UserId == 1)

知道我的测试不正确吗?

1 个答案:

答案 0 :(得分:6)

假设你正在使用Moq并且someDataMock是一个模拟对象,问题在于设置。试试这个......

someDataMock.Setup(s => s.GetUser(It.IsAny<Func<User, bool>>()).Returns(userProfile);

这应该有效,但你可能想让它在接受的回调中受到更严格的限制,具体取决于测试的性质。