0

我正在尝试测试是否进行了服务调用。我有一个IAuthenticationService可以UpdateUserProfile打电话的。在IAuthenticationServiceIoC 中(StructureMap在我的情况下)。 MustHaveHappened正在返回0呼叫,但我知道它发生在调试中。

[TestMethod]
public void It_should_call_the_UpdateUserProfile()
{
    // initialize in the base class, here for brevity
    ObjectFactory.Initialize(registry =>
    {
        registry.For<IAuthenticationService>().Use(A.Fake<IAuthenticationService>());
    });
    UserProfile profileSend = new UserProfile
    {
        UserName = this.HttpContextBaseFake.User.Identity.Name,
        CultureSelection = expectedCultureInfoString
    };

    Utils.UpdateProfile(profileSend);
    IAuthenticationService service = ObjectFactory.GetInstance<IAuthenticationService>();
    UserProfile profileExpect = new UserProfile
    {
        UserName = this.HttpContextBaseFake.User.Identity.Name,
        CultureSelection = expectedCultureInfoString
    };

    // this is returning 0 calls
    // I've also tried sending in the profileExpect instead of A.Dummy<UserProfile>
    // it would be nice to test for the name and string was sent
    A.CallTo(() => service.UpdateUserProfile(A.Dummy<UserProfile>())).MustHaveHappened();
}

// using static class for a reason, the code in my project has more in it
public static class Utils
{
    public static void UpdateProfile(UserProfile profile)
    {
        // user profile is more easily available, use that for the unique identifier
        IAuthenticationService service = ObjectFactory.GetInstance<IAuthenticationService>();
        UserProfile userProfile = new UserProfile
        {
            UserName = userProfileName,
            CultureSelection = cultureInfoString
        };

        service.UpdateUserProfile(userProfile);
    }
}
4

1 回答 1

1

我需要在 A.CallTo(.

所以它变成:

A.CallTo(() => service.UpdateUserProfile(A<UserProfile>.Ignored)).MustHaveHappened();
于 2012-11-13T20:56:18.313 回答