MVVMLight RelayCommand.RaiseCanExecuteChanged不会引发CanExecuteChanged事件

时间:2018-03-01 16:24:11

标签: c# wpf mvvm-light relaycommand

我正在使用MVVMLight框架在WPF中开发一个应用程序。

我正在尝试进行单元测试(我是新手)。所以我尝试通过在我的命令上订阅CanExecuteChanged事件来模拟我的视图,并验证它是否被正确调用。但是当我这样做时,它永远不会被调用,即使我调用了RaiseCanExecuteChanged方法。

这是一个非常简单的示例:

bool testCanExec = false;
var testCmd = new RelayCommand(
                     execute:    () => { System.Diagnostics.Debug.WriteLine($"Execute call"); },
                     canExecute: () => { System.Diagnostics.Debug.WriteLine($"CanExecute call"); return testCanExec; }
                );
testCmd.CanExecuteChanged += ((sender, args) => { System.Diagnostics.Debug.WriteLine($"CanExecuteChanged call"); });
testCanExec = true;
testCmd.RaiseCanExecuteChanged(); // <= nothing in output
testCmd.Execute(null);            // <= output: "CanExecute call", "Execute call"

我真正无法理解的是它似乎与我的按钮一起使用。我不知道如何正确启用和禁用。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

RelayCommand的{​​{1}}方法只调用RaiseCanExecuteChanged,这在单元测试的上下文中无效:https://github.com/lbugnion/mvvmlight/blob/b23c4d5bf6df654ad885be26ea053fb0efa04973/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight%20(NET35)/Command/RelayCommandGeneric.cs

..因为没有订阅CommandManager.InvalidateRequerySuggested()事件的控件。

此外,您通常不应该编写测试第三方框架功能的单元测试。您应该专注于测试自己的自定义功能。

但是如果你想测试CommandManager.RequerySuggested方法,你应该简单地调用它而不是引发CanExecute事件:

CanExecuteChanged