gpt4 book ai didi

c# - 最小起订量文档在哪里?

转载 作者:IT王子 更新时间:2023-10-29 03:48:01 24 4
gpt4 key购买 nike

<分区>

我在哪里可以找到最小起订量的综合文档?我只是从 mock 开始,我很难理解它。我已经通读了所有链接 http://code.google.com/p/moq/wiki/QuickStart但似乎找不到教程或详细介绍。

我也简要地看过 Rhino Mocks,但发现它非常困惑。


是的 - 我读了 Stephen Walthers 的文章 - 非常有帮助。我也浏览了链接。我似乎无法在 http://www.bestechvideos.com/2008/06/08/dimecasts-net-introduction-to-mocking-with-moq 观看视频 [失效链接]

具体来说,我正在尝试确定是否从模拟类中引发了一个事件。我无法编译 QuickStarts 页面上的事件示例。在 google groups 上,Daniel 解释说 CreateEventHandler 只能处理 EventHandler<TEventArgs> 类型的事件。 ,但即便如此我也无法编译代码。

更具体地说,我有一个实现 INotifyChanged 的类.

public class Entity : INotifyChanged
{
public event PropertyChangingEventHandler PropertyChanging;

public int Id
{
get {return _id;}
set {
_id = value;
OnPropertyChanged("Id");
}
}

protected void OnPropertyChanged(string property)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
etc .....
}

我如何模拟类来测试 PropertyChanged 是否正常?事件被解雇?我无法将事件重写为 public event EventHandler<PropertyChangedEventArgs>因为我得到这个错误:

Error 1 'CoreServices.Notifier' does not implement interface member System.ComponentModel.INotifyPropertyChanged.PropertyChanged'. 'CoreServices.Notifier.PropertyChanged' cannot implement 'System.ComponentModel.INotifyPropertyChanged.PropertyChanged' because it does not have the matching return type of 'System.ComponentModel.PropertyChangedEventHandler'.

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