测试此属性的最佳方法是什么:
public string ThreadId {
get { return _threadId; }
set {
_threadId = value;
NotifyPropertyChanged();
}
}
到目前为止我有这个测试:
[Fact]
public void ThreadIdTest() {
compassLogData.ThreadId = "[11]";
const string expected = "[11]";
string actual = compassLogData.ThreadId;
Assert.Equal(expected, actual);
}
但我需要一个去测试 NotifyPropertyChanged()
哪个用于更新 UI。