3
的多個屬性有沒有辦法做這樣的事情使用FluentAssertionsFluentAssertions斷言一個對象
response.Satisfy(r =>
r.Property1== "something" &&
r.Property2== "anotherthing"));
我試圖避免編寫多個斷言語句。這是我用了最長時間的https://sharptestex.codeplex.com/。但是SharpTestEx不支持.Net Core。
我應該做這驗證主題的多個屬性? –