0

サービスコールが行われることをテストしようとしています。電話をかけるIAuthenticationServiceがありUpdateUserProfileます。これIAuthenticationServiceはIoCにあります(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.Dummy()の代わりにA.Ignoredを使用する必要がありました。

したがって、次のようになります。

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