gpt4 book ai didi

c# - 单元测试调用 DispatcherHelper.CheckBeginInvokeOnUI 的异步方法

转载 作者:行者123 更新时间:2023-11-30 23:20:11 25 4
gpt4 key购买 nike

我在 visual studio 2012 中使用 MVVM Light 5.2。我的单元测试是 MS 测试,我不知道如何测试我的异步方法,因为 DispatcherHelper 不会调用我的 Action。使用以下测试,调试中永远不会达到 Thread.Sleep。

在 MVVM Light sources DispatcherHelper.CheckBeginInvokeOnUi 中调用 UIDispatcher.BeginInvoke(action),并且什么都不会发生。我究竟做错了什么 ?

    [TestMethod]
public void TestMethod1()
{
DispatcherHelper.Initialize();
TestedMethod();
// Do assert here
}

void TestedMethod()
{
ThreadPool.QueueUserWorkItem((o) =>
{
// Do stuff
DispatcherHelper.CheckBeginInvokeOnUI(() =>
{
// Do stuff
Thread.Sleep(1); // Breakpoint here
});
});
}

最佳答案

如果它能有所帮助,因为我不想修改 MVVM 光源,我最终在 DispatcherHelper 上编写了一个代理,它在测试方法中初始化时直接调用该操作。它还处理设计模式。

我只需要通过 UIDispatcher 搜索/替换每个 DispatcherHelper,仅此而已。

代码如下:

public static class UIDispatcher
{
private static bool _isTestInstance;

/// <summary>
/// Executes an action on the UI thread. If this method is called from the UI
/// thread, the action is executed immendiately. If the method is called from
/// another thread, the action will be enqueued on the UI thread's dispatcher
/// and executed asynchronously.
/// For additional operations on the UI thread, you can get a reference to the
/// UI thread's dispatcher thanks to the property GalaSoft.MvvmLight.Threading.DispatcherHelper.UIDispatcher
/// </summary>
/// <param name="action">The action that will be executed on the UI thread.</param>
public static void CheckBeginInvokeOnUI(Action action)
{
if (action == null)
{
return;
}
if ((_isTestInstance) || (ViewModelBase.IsInDesignModeStatic))
{
action();
}
else
{
DispatcherHelper.CheckBeginInvokeOnUI(action);
}
}

/// <summary>
/// This method should be called once on the UI thread to ensure that the GalaSoft.MvvmLight.Threading.DispatcherHelper.UIDispatcher
/// property is initialized.
/// In a Silverlight application, call this method in the Application_Startup
/// event handler, after the MainPage is constructed.
/// In WPF, call this method on the static App() constructor.
/// </summary>
/// <param name="isTestInstance"></param>
public static void Initialize(bool isTestInstance = false)
{
_isTestInstance = isTestInstance;
if (!_isTestInstance)
DispatcherHelper.Initialize();
}

/// <summary>
/// Resets the class by deleting the GalaSoft.MvvmLight.Threading.DispatcherHelper.UIDispatcher
/// </summary>
public static void Reset()
{
if (!_isTestInstance)
DispatcherHelper.Reset();
}
}

关于c# - 单元测试调用 DispatcherHelper.CheckBeginInvokeOnUI 的异步方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39848325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com